Skip to content

Commit

Permalink
Fix typ hint
Browse files Browse the repository at this point in the history
  • Loading branch information
MisatoTremor committed Feb 20, 2019
1 parent ba9f285 commit 0bc1831
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Export/Doctrine/ORM/Exporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

use Avro\CsvBundle\Export\Exporter as BaseExporter;
use Avro\CsvBundle\Export\ExporterInterface;
use Doctrine\ORM\EntityManager;
use Doctrine\ORM\EntityManagerInterface;

/**
* Import csv to doctrine entity/document.
Expand All @@ -21,9 +21,9 @@ class Exporter extends BaseExporter implements ExporterInterface
protected $entityManager;

/**
* @param EntityManager $entityManager The csv entityManager
* @param EntityManagerInterface $entityManager The csv entityManager
*/
public function __construct(EntityManager $entityManager)
public function __construct(EntityManagerInterface $entityManager)
{
$this->entityManager = $entityManager;
}
Expand Down

0 comments on commit 0bc1831

Please sign in to comment.