Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class UpdateCharacteristics |
||
11 | { |
||
12 | private $contextRepository; |
||
13 | private $authGateway; |
||
14 | |||
15 | public function __construct( |
||
16 | ContextRepository $contextRepository, |
||
17 | AuthGateway $authGateway |
||
18 | ) |
||
19 | { |
||
20 | $this->contextRepository = $contextRepository; |
||
21 | $this->authGateway = $authGateway; |
||
22 | } |
||
23 | |||
24 | public function execute(array $characteristics) |
||
29 | } |
||
30 | } |
||
31 |