| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | 3 | public function __construct( |
|
| 25 | SourceFileRepository $sourceFileRepository, |
||
| 26 | SourceFilesBuilder $sourceFilesBuilder, |
||
| 27 | string $buildDir |
||
| 28 | ) { |
||
| 29 | 3 | parent::__construct(); |
|
| 30 | |||
| 31 | 3 | $this->sourceFileRepository = $sourceFileRepository; |
|
| 32 | 3 | $this->sourceFilesBuilder = $sourceFilesBuilder; |
|
| 33 | 3 | $this->buildDir = $buildDir; |
|
| 34 | 3 | } |
|
| 51 |