Add no_useless_else in phpcs
parent
02fbbd5a42
commit
50045a7536
1
.php_cs
1
.php_cs
|
@ -39,6 +39,7 @@ return PhpCsFixer\Config::create()
|
||||||
'no_leading_namespace_whitespace' => true,
|
'no_leading_namespace_whitespace' => true,
|
||||||
'no_trailing_comma_in_singleline_array' => true,
|
'no_trailing_comma_in_singleline_array' => true,
|
||||||
'no_unused_imports' => true,
|
'no_unused_imports' => true,
|
||||||
|
'no_useless_else' => true,
|
||||||
'no_whitespace_in_blank_line' => true,
|
'no_whitespace_in_blank_line' => true,
|
||||||
'object_operator_without_whitespace' => true,
|
'object_operator_without_whitespace' => true,
|
||||||
'phpdoc_align' => true,
|
'phpdoc_align' => true,
|
||||||
|
|
|
@ -243,13 +243,13 @@ class Perforce
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
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()
|
public function queryP4Password()
|
||||||
|
|
Loading…
Reference in New Issue