Skip to content

Commit

Permalink
chore: Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
tienvx committed Mar 16, 2024
1 parent a16067c commit b105bb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Filter/BaseFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

abstract class BaseFilter implements FilterInterface
{
private null|string|array $cache = null;
private string|array|null $cache = null;

public function __construct(
protected string $subpackageName,
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/CommandTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ protected static function startLocalServer(): void
self::$server = new Process(['php', '-S', 'localhost:8000', '-t', static::getFilesPath()]);
self::$server->start();
self::$server->waitUntil(function ($type, $output) {
return false !== strpos($output, 'Development Server (http://localhost:8000) started');
return str_contains($output, 'Development Server (http://localhost:8000) started');
});
}

Expand Down

0 comments on commit b105bb8

Please sign in to comment.