From cf5402d894414275c8c79db7e3cf9073a957d697 Mon Sep 17 00:00:00 2001 From: Stephen Ball Date: Wed, 8 Jun 2016 10:25:10 +0100 Subject: [PATCH 1/2] Update Deployer.php --- PHPCI/Plugin/Deployer.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PHPCI/Plugin/Deployer.php b/PHPCI/Plugin/Deployer.php index 9c56a340..8ef7ced0 100644 --- a/PHPCI/Plugin/Deployer.php +++ b/PHPCI/Plugin/Deployer.php @@ -65,7 +65,8 @@ class Deployer implements \PHPCI\Plugin 'source' => 'PHPCI', 'url' => $this->phpci->interpolate('%BUILD_URI%'), 'branch' => $this->phpci->interpolate('%BRANCH%'), - 'update_only' => $this->updateOnly + 'commit' => $this->phpci->interpolate('%COMMIT%'), + 'update_only' => $this->updateOnly, )); return $response['success']; From 64b0f60368c6cc6a6373dc316510c276c2f508d4 Mon Sep 17 00:00:00 2001 From: Arnout Boks Date: Wed, 17 Aug 2016 13:35:21 +0200 Subject: [PATCH 2/2] Removed unused 'standard' option for PhpCpd plugin (#1249) --- PHPCI/Plugin/PhpCpd.php | 5 ----- 1 file changed, 5 deletions(-) mode change 100644 => 100755 PHPCI/Plugin/PhpCpd.php diff --git a/PHPCI/Plugin/PhpCpd.php b/PHPCI/Plugin/PhpCpd.php old mode 100644 new mode 100755 index 2424d41e..aa076d2d --- a/PHPCI/Plugin/PhpCpd.php +++ b/PHPCI/Plugin/PhpCpd.php @@ -50,17 +50,12 @@ class PhpCpd implements \PHPCI\Plugin $this->build = $build; $this->path = $phpci->buildPath; - $this->standard = 'PSR1'; $this->ignore = $phpci->ignore; if (!empty($options['path'])) { $this->path = $phpci->buildPath . $options['path']; } - if (!empty($options['standard'])) { - $this->standard = $options['standard']; - } - if (!empty($options['ignore'])) { $this->ignore = $options['ignore']; }