| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 19 | public function __construct( |
||
| 20 | ScoreCalculator $scoreCalculator, |
||
| 21 | ProcessorFactory $processorFactory, |
||
| 22 | AuditionResult $auditionResult |
||
| 23 | ) { |
||
| 24 | $this->scoreCalculator = $scoreCalculator; |
||
| 25 | $this->processorFactory = $processorFactory; |
||
| 26 | $this->auditionResult = $auditionResult; |
||
| 27 | } |
||
| 39 |