Skip to content

Commit 0ea8c29

Browse files
committed
CS: remove unneeded parentheses around control statements
1 parent 4b97945 commit 0ea8c29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Normalizer/GetSetMethodNormalizer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,10 +242,10 @@ private function supports($class)
242242
*/
243243
private function isGetMethod(\ReflectionMethod $method)
244244
{
245-
return (
245+
return
246246
0 === strpos($method->name, 'get') &&
247247
3 < strlen($method->name) &&
248248
0 === $method->getNumberOfRequiredParameters()
249-
);
249+
;
250250
}
251251
}

0 commit comments

Comments
 (0)