diff --git a/src/LintCodeCommand.php b/src/LintCodeCommand.php index bd6d069..4e4aa26 100644 --- a/src/LintCodeCommand.php +++ b/src/LintCodeCommand.php @@ -34,7 +34,7 @@ public function handle() $code = $this->call('lint:phpcs', [ 'files' => $this->argument('files'), '--fix' => $this->option('fix') ]); - $code += $this->call('lint:phpmd', [ + $code += $this->call('lint:pmd', [ 'files' => $this->argument('files') ]); return $code;