Removed unused 'standard' option for PhpCpd plugin (#1249)

This commit is contained in:
Arnout Boks 2016-08-17 13:35:21 +02:00 committed by Dan Cryer
parent 42ca1c6527
commit 64b0f60368
1 changed files with 0 additions and 5 deletions

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