Skip to content

Commit ac19459

Browse files
committed
fix tests
1 parent d1ce092 commit ac19459

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

tests/Stubs/Author.php

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,15 @@
1717
*/
1818
final class Author
1919
{
20-
public string $firstName;
20+
/**
21+
* @var string
22+
*/
23+
public $firstName;
2124

22-
public string $lastName;
25+
/**
26+
* @var string
27+
*/
28+
public $lastName;
2329

2430
public static function create(string $firstName, string $lastName): self
2531
{

tests/Stubs/TestMessage.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ final class TestMessage
2121
* @var string
2222
*/
2323
private $componentName;
24+
2425
/**
2526
* @var string|null
2627
*/

0 commit comments

Comments
 (0)