1 | <?php |
||
11 | class ApplicationRepository implements ApplicationRepositoryInterface |
||
12 | { |
||
13 | /** |
||
14 | * @see TokenRepositoryInterface::persist() |
||
15 | */ |
||
16 | public function persist(ApplicationInterface $application) |
||
19 | |||
20 | /** |
||
21 | * @see TokenRepositoryInterface::remove() |
||
22 | */ |
||
23 | public function remove(ApplicationInterface $application) |
||
26 | } |
||
27 |