Skip to content

Commit

Permalink
fix: ResourcesCacheStore uninitialized variable
Browse files Browse the repository at this point in the history
  • Loading branch information
alexzarbn committed May 2, 2022
1 parent 7aa3a19 commit 8e4f970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Specs/ResourcesCacheStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class ResourcesCacheStore
{
/** @var RegisteredResource[] */
protected array $resources = [];
protected $resources = [];

public function addResource(RegisteredResource $resource): self
{
Expand Down

0 comments on commit 8e4f970

Please sign in to comment.