| 1 | <?php |
||
| 16 | class LoadCommentData implements FixtureInterface,ContainerAwareInterface{ |
||
| 17 | |||
| 18 | public $container; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Sets the Container. |
||
| 22 | * |
||
| 23 | * @param ContainerInterface|null $container A ContainerInterface instance or null |
||
| 24 | * |
||
| 25 | * @api |
||
| 26 | */ |
||
| 27 | public function setContainer(ContainerInterface $container = null) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Load data fixtures with the passed EntityManager |
||
| 34 | * |
||
| 35 | * @param ObjectManager $manager |
||
| 36 | */ |
||
| 37 | public function load(ObjectManager $manager) |
||
| 65 | } |