Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | public function __construct( |
||
12 | Contracts\AlbumAdapter $albumAdapter, |
||
13 | Contracts\PhotoAdapter $photoAdapter, |
||
14 | Contracts\UserAdapter $userAdapter, |
||
15 | Contracts\TagAdapter $tagAdapter |
||
16 | ) { |
||
17 | $this->adapters['album'] = $albumAdapter; |
||
18 | $this->adapters['photo'] = $photoAdapter; |
||
19 | $this->adapters['user'] = $userAdapter; |
||
20 | $this->adapters['tag'] = $tagAdapter; |
||
21 | } |
||
22 | |||
47 | } |