Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Naoray committed Dec 6, 2024
1 parent 16785c5 commit b5f6665
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/Helpers/HelpersTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,5 +140,10 @@ class TestFilterClass

class TestComposable
{
public function __construct(public $value) {}
public $value;

public function __construct($value)
{
$this->value = $value;
}
}

0 comments on commit b5f6665

Please sign in to comment.