Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
7 | 1 | interface IProfileStorage |
|
8 | { |
||
9 | /** |
||
10 | * @param \SixtyEightPublishers\Application\Environment\IProfile $profile |
||
11 | * |
||
12 | * @return mixed|void |
||
13 | */ |
||
14 | public function setProfile(IProfile $profile); |
||
15 | |||
16 | /** |
||
17 | * @return \SixtyEightPublishers\Application\Environment\ActiveProfile |
||
18 | */ |
||
19 | public function getProfile() : ActiveProfile; |
||
20 | |||
21 | /** |
||
22 | * Saves actual ActiveProfile's state |
||
23 | * @return mixed|void |
||
24 | */ |
||
25 | public function persist(); |
||
26 | } |
||
27 |