1 | <?php |
||
6 | class Environment |
||
7 | { |
||
8 | /** @var null|Profile */ |
||
9 | private $profile; |
||
10 | |||
11 | /** |
||
12 | * @param \SixtyEightPublishers\Application\ProfileContainer $profileContainer |
||
13 | * @param \SixtyEightPublishers\Application\IEnvironmentDetector $detector |
||
14 | */ |
||
15 | public function __construct(ProfileContainer $profileContainer, IEnvironmentDetector $detector) |
||
20 | |||
21 | /** |
||
22 | * @return \SixtyEightPublishers\Application\Profile |
||
23 | */ |
||
24 | public function getProfile() |
||
28 | |||
29 | } |
||
30 |