1 | <?php |
||
25 | abstract class AbstractLoader implements ContainerAwareInterface, LoaderInterface |
||
26 | { |
||
27 | /** |
||
28 | * @var ContainerInterface |
||
29 | */ |
||
30 | protected $container; |
||
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | * |
||
35 | * Use Symfony\Component\DependencyInjection\ContainerAwareTrait instead when dropping SF 2.3 and PHP 5.3 support. |
||
36 | */ |
||
37 | 7 | public function setContainer(ContainerInterface $container = null) |
|
41 | |||
42 | /** |
||
43 | * Loads the fixtures files. |
||
44 | * |
||
45 | * @param ObjectManager $objectManager |
||
46 | * |
||
47 | * @return \object[] Persisted objects |
||
48 | */ |
||
49 | 7 | public function load(ObjectManager $objectManager) |
|
52 | } |
||
53 |