1234567891011121314151617181920 |
- <?php
- namespace Doctrine\Common\DataFixtures;
- use Doctrine\Common\Persistence\ObjectManager;
- /**
- * Interface contract for fixture classes to implement.
- *
- * @author Jonathan H. Wage <jonwage@gmail.com>
- */
- interface FixtureInterface
- {
- /**
- * Load data fixtures with the passed EntityManager
- *
- * @param ObjectManager $manager
- */
- public function load(ObjectManager $manager);
- }
|