1 | <?php |
||
5 | class SomeController |
||
6 | { |
||
7 | /** |
||
8 | * @var SomeService |
||
9 | */ |
||
10 | private $someService; |
||
11 | |||
12 | public function __construct(SomeService $someService) |
||
13 | { |
||
14 | $this->someService = $someService; |
||
15 | } |
||
16 | |||
17 | /** |
||
18 | * @return SomeService |
||
19 | */ |
||
20 | public function getSomeService() |
||
21 | { |
||
22 | return $this->someService; |
||
23 | } |
||
24 | } |
||
25 |