Skip to content

Commit

Permalink
Add missing void return type in docblock (#472)
Browse files Browse the repository at this point in the history
  • Loading branch information
GromNaN authored Mar 12, 2024
1 parent 2b3f3be commit 3e95cef
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Executor/AbstractExecutor.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ public function getReferenceRepository()
return $this->referenceRepository;
}

/** @return void */
public function setReferenceRepository(ReferenceRepository $referenceRepository)
{
$this->referenceRepository = $referenceRepository;
Expand Down
2 changes: 2 additions & 0 deletions src/FixtureInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ interface FixtureInterface
{
/**
* Load data fixtures with the passed EntityManager
*
* @return void
*/
public function load(ObjectManager $manager);
}
1 change: 1 addition & 0 deletions src/SharedFixtureInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@
*/
interface SharedFixtureInterface extends FixtureInterface
{
/** @return void */
public function setReferenceRepository(ReferenceRepository $referenceRepository);
}

0 comments on commit 3e95cef

Please sign in to comment.