Browse Source

set-strict_types

pull/4/head
fedy95 5 years ago
parent
commit
8f915232e9
  1. 2
      src/DataFixtures/HistoryFixtures.php
  2. 2
      src/Entity/History.php
  3. 2
      src/Repository/HistoryRepository.php

2
src/DataFixtures/HistoryFixtures.php

@ -1,5 +1,7 @@
<?php <?php
declare(strict_types=1);
namespace App\DataFixtures; namespace App\DataFixtures;
use App\Entity\History; use App\Entity\History;

2
src/Entity/History.php

@ -1,5 +1,7 @@
<?php <?php
declare(strict_types=1);
namespace App\Entity; namespace App\Entity;
use App\Repository\HistoryRepository; use App\Repository\HistoryRepository;

2
src/Repository/HistoryRepository.php

@ -1,5 +1,7 @@
<?php <?php
declare(strict_types=1);
namespace App\Repository; namespace App\Repository;
use App\Entity\History; use App\Entity\History;