| 1 | <?php |
||
| 10 | abstract class Fixture implements FixtureInterface, OrderedFixtureInterface, ContainerAwareInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var ContainerInterface |
||
| 14 | */ |
||
| 15 | private $container; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * {@inheritdoc} |
||
| 19 | */ |
||
| 20 | public function getOrder() |
||
| 24 | |||
| 25 | /** |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | public function get($id) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public function setContainer(ContainerInterface $container = null) |
||
| 44 | } |
||
| 45 |