Skip to content

Commit c811a43

Browse files
committed
Optimize boolean conditions
1 parent 39b264f commit c811a43

3 files changed

+6
-6
lines changed

MO4/Sniffs/Arrays/ArrayDoubleArrowAlignmentSniff.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public function process(File $phpcsFile, $stackPtr): void
9898
$previous = $tokens[($i - 1)];
9999

100100
// Skip nested arrays.
101-
if (true === \in_array($current['code'], $this->arrayTokens, true)) {
101+
if (\in_array($current['code'], $this->arrayTokens, true)) {
102102
$i = T_ARRAY === $current['code'] ? ($current['parenthesis_closer'] + 1) : ($current['bracket_closer'] + 1);
103103

104104
continue;
@@ -147,7 +147,7 @@ public function process(File $phpcsFile, $stackPtr): void
147147
$j = ($i - 1);
148148

149149
while (($j >= 0) && ($tokens[$j]['line'] === $current['line'])) {
150-
if (false === \in_array($tokens[$j]['code'], PHP_CodeSniffer_Tokens::$emptyTokens, true)) {
150+
if (!\in_array($tokens[$j]['code'], PHP_CodeSniffer_Tokens::$emptyTokens, true)) {
151151
$hasKeyInLine = true;
152152
}
153153

MO4/Sniffs/Formatting/AlphabeticalUseStatementsSniff.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class AlphabeticalUseStatementsSniff extends UseDeclarationSniff
9191
*/
9292
public function process(File $phpcsFile, $stackPtr): void
9393
{
94-
if (false === \in_array($this->order, self::SUPPORTED_ORDERING_METHODS, true)) {
94+
if (!\in_array($this->order, self::SUPPORTED_ORDERING_METHODS, true)) {
9595
$error = \sprintf(
9696
"'%s' is not a valid order function for %s! Pick one of: %s",
9797
$this->order,

MO4/Sniffs/Formatting/UnnecessaryNamespaceUsageSniff.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public function process(File $phpcsFile, $stackPtr): void
127127
foreach ($tokens[$nsSep]['comment_tags'] as $tag) {
128128
$content = $tokens[$tag]['content'];
129129

130-
if (false === \array_key_exists($content, $docCommentTags)) {
130+
if (!\array_key_exists($content, $docCommentTags)) {
131131
continue;
132132
}
133133

@@ -181,7 +181,7 @@ public function process(File $phpcsFile, $stackPtr): void
181181
// phpcs:enable
182182

183183
foreach ($typeTokens as $typeToken) {
184-
if (true === \in_array($typeToken, $useStatements, true)) {
184+
if (\in_array($typeToken, $useStatements, true)) {
185185
continue;
186186
}
187187

@@ -343,7 +343,7 @@ private function checkShorthandPossible(File $phpcsFile, array $useStatements, s
343343

344344
$fullClassName = $this->getFullyQualifiedClassName($className);
345345

346-
if (true === \array_key_exists($fullClassName, $useStatements)) {
346+
if (\array_key_exists($fullClassName, $useStatements)) {
347347
$replacement = $useStatements[$fullClassName];
348348

349349
$data = [

0 commit comments

Comments
 (0)