From 7d09a5cd980bd4f9610c6aa8a322b0c21df5eb60 Mon Sep 17 00:00:00 2001 From: Gabriel Baker Date: Tue, 14 May 2013 06:32:17 +0100 Subject: [PATCH] fix missing ! --- PHPCI/Builder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPCI/Builder.php b/PHPCI/Builder.php index b32c106f..26017d86 100644 --- a/PHPCI/Builder.php +++ b/PHPCI/Builder.php @@ -193,7 +193,7 @@ class Builder protected function executePlugins($stage) { - if ( array_key_exists($stage, $this->config) && !is_array($this->config[$stage]) ) { + if ( !array_key_exists($stage, $this->config) && !is_array($this->config[$stage]) ) { return; }