Merge branch 'master' into gogs-webhook

This commit is contained in:
Denis Denisov 2016-08-23 10:47:27 +03:00 committed by GitHub
commit 8cfd22de1b

5
PHPCI/Plugin/PhpCpd.php Normal file → Executable file
View file

@ -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'];
}