1
0
Fork 0

Merge pull request #6921 from carusogabriel/add-no_useless_else-phpcs

Add no_useless_else in phpcs
pull/6926/head
Jordi Boggiano 2017-12-19 13:56:56 +01:00 committed by GitHub
commit 6d4a8574da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 6 deletions

View File

@ -39,6 +39,7 @@ return PhpCsFixer\Config::create()
'no_leading_namespace_whitespace' => true,
'no_trailing_comma_in_singleline_array' => true,
'no_unused_imports' => true,
'no_useless_else' => true,
'no_whitespace_in_blank_line' => true,
'object_operator_without_whitespace' => true,
'phpdoc_align' => true,

View File

@ -243,13 +243,13 @@ class Perforce
}
return null;
} else {
$command = 'echo $' . $name;
$this->executeCommand($command);
$result = trim($this->commandResult);
return $result;
}
$command = 'echo $' . $name;
$this->executeCommand($command);
$result = trim($this->commandResult);
return $result;
}
public function queryP4Password()