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