Skip to content

Commit c9f77f7

Browse files
authored
Fix code style issues (#7156)
1 parent 66ac8c6 commit c9f77f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rules/CodeQuality/Rector/BooleanAnd/SimplifyEmptyArrayCheckRector.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ function (Node $node): bool {
9797
}
9898

9999
if (isset($node->getArgs()[0])) {
100-
return $node->getArgs()[0]->value instanceof Variable;
100+
return $node->getArgs()[0]
101+
->value instanceof Variable;
101102
}
102103

103104
return false;

rules/Php85/Rector/Const_/DeprecatedAnnotationToDeprecatedAttributeRector.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
*/
1919
final class DeprecatedAnnotationToDeprecatedAttributeRector extends AbstractRector implements MinPhpVersionInterface
2020
{
21-
2221
public function __construct(
2322
private readonly DeprecatedAnnotationToDeprecatedAttributeConverter $converter,
2423
) {

0 commit comments

Comments
 (0)