| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class TestInjectionWidget extends Widget |
||
| 9 | { |
||
| 10 | private Injectable $injectable; |
||
| 11 | |||
| 12 | public function __construct(Injectable $injectable) |
||
| 13 | { |
||
| 14 | $this->injectable = $injectable; |
||
| 15 | } |
||
| 16 | |||
| 17 | public function getInjectable(): Injectable |
||
| 18 | { |
||
| 19 | return $this->injectable; |
||
| 20 | } |
||
| 21 | |||
| 22 | protected function run(): string |
||
| 23 | { |
||
| 24 | return 'test'; |
||
| 25 | } |
||
| 27 |