Skip to content

Commit

Permalink
Fix fixture deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny van Wijk committed Nov 8, 2024
1 parent 1b9a48c commit 6a47e41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Kunstmaan/FixturesBundle/Loader/FixtureLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ abstract class FixtureLoader implements FixtureInterface, ContainerAwareInterfac
/**
* Load data fixtures with the passed EntityManager
*/
public function load(ObjectManager $manager)
public function load(ObjectManager $manager): void
{
$this->manager = $manager;
$options = $this->getOptions();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function __construct()
$this->faker = FakerFactory::create();
}

public function load(ObjectManager $manager)
public function load(ObjectManager $manager): void
{
$this->errorKeys($manager);
$this->exceptionKeys($manager);
Expand Down

0 comments on commit 6a47e41

Please sign in to comment.