Skip to content

Commit

Permalink
ignore phpstan error
Browse files Browse the repository at this point in the history
  • Loading branch information
timacdonald committed May 8, 2022
1 parent 15f7635 commit 0abb578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ protected function setUp(): void
$app = Container::setInstance(new Container());

$app->singleton('config', fn () => new Repository(['logging' => ['default' => 'stack']]));
$app->singleton('log', fn () => new LogManager($app));
$app->singleton('log', fn () => new LogManager($app)); /** @phpstan-ignore-line */

Facade::setFacadeApplication($app); /** @phpstan-ignore-line */
Facade::clearResolvedInstances();
Expand Down

0 comments on commit 0abb578

Please sign in to comment.