Skip to content

Commit 11e129f

Browse files
HP-1631 Fixed "Class SimplePlanRepository contains 1 abstract method and must therefore be declared abstract or implement the remaining methods" fatal error
1 parent 2da650c commit 11e129f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/support/plan/SimplePlanRepository.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,9 @@ public function getById(int $id): PlanInterface
5151
{
5252
throw new \Exception('not implemented');
5353
}
54+
55+
public function save(PlanInterface $action): void
56+
{
57+
throw new \Exception('not implemented');
58+
}
5459
}

0 commit comments

Comments
 (0)