| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 15 | public function __construct( |
||
| 16 | string $directory, |
||
| 17 | ?string $namespace = '', |
||
| 18 | ?string $classPrefix = '', |
||
| 19 | ?string $classSuffix = '' |
||
| 20 | ) { |
||
| 21 | $this->directory = $directory; |
||
| 22 | $this->namespace = $namespace; |
||
| 23 | $this->classPrefix = $classPrefix; |
||
| 24 | $this->classSuffix = $classSuffix; |
||
| 25 | } |
||
| 27 |