| Total Complexity | 2 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class Factory extends AbstractFactory |
||
| 12 | { |
||
| 13 | public function createStringA1(): StringValueInterface |
||
| 14 | { |
||
| 15 | return new StringValue('Hi, from vendor\ThirdParty\ModuleA::StringA1'); |
||
| 16 | } |
||
| 17 | |||
| 18 | public function createStringA2(): StringValueInterface |
||
| 19 | { |
||
| 20 | return new StringValue('Hi, from vendor\ThirdParty\ModuleA::StringA2'); |
||
| 21 | } |
||
| 23 |