| 1 | <?php |
||
| 10 | class FixtureService |
||
| 11 | {
|
||
| 12 | /** |
||
| 13 | * @var EntityManager |
||
| 14 | */ |
||
| 15 | private $entityManager; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param EntityManager $entityManager |
||
| 19 | */ |
||
| 20 | public function __construct(EntityManager $entityManager) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param int $season |
||
| 27 | * |
||
| 28 | * @throws \Exception |
||
| 29 | */ |
||
| 30 | public function createFixtures($season) |
||
| 50 | } |
||
| 51 |