Skip to content

Commit 91ff869

Browse files
committed
Fix PHPCS
1 parent e307495 commit 91ff869

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Inpsyde/Sniffs/CodeQuality/ReturnTypeDeclarationSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ private function hasReturnNullOrMixedDocBloc(File $file, int $functionPosition):
332332

333333
return [
334334
'mixed' => in_array('mixed', $returnTypes, true),
335-
'null' => in_array('null', $returnTypes, true)
335+
'null' => in_array('null', $returnTypes, true),
336336
];
337337
}
338338

0 commit comments

Comments
 (0)