Total Complexity | 2 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | trait ApplicationAware |
||
10 | { |
||
11 | protected ApplicationConfiguration $applicationConfiguration; |
||
12 | |||
13 | 2 | public function getApplicationConfiguration(): ApplicationConfiguration |
|
14 | { |
||
15 | 2 | return $this->applicationConfiguration; |
|
16 | } |
||
17 | |||
18 | 6 | public function setApplicationConfiguration(ApplicationConfiguration $applicationConfiguration): void |
|
21 | 6 | } |
|
22 | } |
||
23 |