Skip to content

Commit

Permalink
fix phpstan
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Jan 2, 2025
1 parent 6921075 commit c744ba4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function getRuleDefinition(): RuleDefinition
<<<'CODE_SAMPLE'
class SomeClass
{
public function __construct(private readonly \stdClass $std)
public function __construct(private \stdClass $std)
{
$this->std = $std;
}
Expand All @@ -40,7 +40,7 @@ public function __construct(private readonly \stdClass $std)
<<<'CODE_SAMPLE'
class SomeClass
{
public function __construct(private readonly \stdClass $std)
public function __construct(private \stdClass $std)
{
}
}
Expand Down

0 comments on commit c744ba4

Please sign in to comment.