1 | <?php |
||
18 | class SimplePlanRepository implements PlanRepositoryInterface |
||
19 | { |
||
20 | protected $plan; |
||
21 | |||
22 | public function __construct(PlanInterface $plan) |
||
26 | |||
27 | public function findByAction(ActionInterface $action) |
||
31 | |||
32 | public function findByOrder(OrderInterface $order) |
||
41 | |||
42 | public function findByIds(array $ids) |
||
46 | } |
||
47 |