vendor/theofidry/alice-data-fixtures/src/LoaderInterface.php line 27

Open in your IDE?
  1. <?php
  2. /*
  3. * This file is part of the Fidry\AliceDataFixtures package.
  4. *
  5. * (c) Théo FIDRY <theo.fidry@gmail.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. declare(strict_types=1);
  11. namespace Fidry\AliceDataFixtures;
  12. use Fidry\AliceDataFixtures\Persistence\PurgeMode;
  13. interface LoaderInterface
  14. {
  15. /**
  16. * Loads the fixtures files and return the loaded objects.
  17. *
  18. * @param string[] $fixturesFiles Path to the fixtures files to loads.
  19. *
  20. * @return object[]
  21. */
  22. public function load(array $fixturesFiles, array $parameters = [], array $objects = [], PurgeMode $purgeMode = null): array;
  23. }