Skip to content

Commit

Permalink
Remove readonly attributes from FakeTodoRepositoryAttr
Browse files Browse the repository at this point in the history
The readonly attributes were removed from the FakeTodoRepositoryAttr class signature. This change ensures greater flexibility and adaptability of the class members.
  • Loading branch information
koriym committed Jun 7, 2024
1 parent 2f557f6 commit 1e8f8c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Fake/FakeTodoRepositoryAttr.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
class FakeTodoRepositoryAttr
{
public function __construct(
#[Sql('todo_insert')] public readonly InvokeInterface $todoCreate,
#[Sql('todo_item_by_id')] public readonly RowInterface $todoItem,
#[Sql('todo_list')] public readonly RowListInterface $todoList
#[Sql('todo_insert')] public InvokeInterface $todoCreate,
#[Sql('todo_item_by_id')] public RowInterface $todoItem,
#[Sql('todo_list')] public RowListInterface $todoList
){}
}

0 comments on commit 1e8f8c5

Please sign in to comment.