Skip to content

Commit

Permalink
Merge pull request #209 from Yoast/feature/cs-minor-fixes
Browse files Browse the repository at this point in the history
CS: minor fixes
  • Loading branch information
jrfnl authored Nov 7, 2024
2 parents 624efa1 + 37406c0 commit da368cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Polyfills/Fixtures/ValueObjectUnionNoReturnType.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function __construct( $value ) {
*
* @param self|OtherClass|array $other Object to compare.
*
* @return bool
* @return bool|null
*/
public function equalsParamUnionType( self|OtherClass|array $other ) {
return ( $this->value === $other->value );
Expand Down
2 changes: 1 addition & 1 deletion tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ static function ( $fqClassName ) {
}
else {
echo 'Please run `composer install` before attempting to run the tests.';
die( 1 );
exit( 1 );
}

/*
Expand Down

0 comments on commit da368cb

Please sign in to comment.