Skip to content

Commit

Permalink
fix(phpstan): removed phpstan ignore annotation in CallableBootManage…
Browse files Browse the repository at this point in the history
…rFactory because of phpstan update
  • Loading branch information
Rastusik committed Dec 16, 2022
1 parent 44499ff commit db4b619
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Server/Runtime/CallableBootManagerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function make(iterable $bootableCollection, BootableInterface ...$bootabl
$result = !isset($objectRegistry[$id]);
$objectRegistry[$id] = true;

return $result; /* @phpstan-ignore-line */
return $result;
};

return new CallableBootManager(
Expand Down

0 comments on commit db4b619

Please sign in to comment.