| 1 | <?php |
||
| 20 | class CalculateScore implements JobInterface |
||
| 21 | { |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var ScoringInterface |
||
| 25 | */ |
||
| 26 | private $scoring; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Constructor |
||
| 30 | * |
||
| 31 | * @param $scoring |
||
| 32 | */ |
||
| 33 | public function __construct(ScoringInterface $scoring) |
||
| 37 | |||
| 38 | |||
| 39 | /** |
||
| 40 | * @inheritdoc |
||
| 41 | */ |
||
| 42 | public function execute(ResultCollection $collection, ResultCollection $aggregatedResults) { |
||
| 46 | |||
| 47 | } |
||
| 48 |