Skip to content

Commit

Permalink
FIX e2e test at strictess level
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveLiddament committed Dec 16, 2024
1 parent bbb5d46 commit d7ad99e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion e2e/data/FriendProblems.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ class FriendProblems
{
public function badCode(Person $person): void
{
new Person();
$person = new Person();
var_dump($person);
Person::aStaticMethod();
$person->aMethod();
}
Expand Down

0 comments on commit d7ad99e

Please sign in to comment.