mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 04:44:19 +01:00
17 lines
312 B
PHP
17 lines
312 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service;
|
|
|
|
use App\Repository\CandidateRepository;
|
|
|
|
/**
|
|
* @phpstan-import-type ResultList from CandidateRepository
|
|
*/
|
|
class EliminationService
|
|
{
|
|
/** @phpstan-param ResultList $result */
|
|
public function createEliminationFromResult(array $result): void {}
|
|
}
|