Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | final class ResourceRefresher implements ResourceRefresherInterface |
||
21 | { |
||
22 | /** @var ContainerInterface */ |
||
23 | private $container; |
||
24 | |||
25 | public function __construct(ContainerInterface $container) |
||
26 | { |
||
27 | $this->container = $container; |
||
28 | } |
||
29 | |||
30 | public function refresh(ResourceInterface $resource, string $objectPersisterId): void |
||
37 | } |
||
38 | |||
39 | public function remove(ResourceInterface $resource, string $objectPersisterId): void |
||
48 |