1 | <?php |
||
23 | final class HookableFixtureLoader implements FixtureLoaderInterface |
||
24 | { |
||
25 | /** |
||
26 | * @var FixtureLoaderInterface |
||
27 | */ |
||
28 | private $decoratedFixtureLoader; |
||
29 | |||
30 | /** |
||
31 | * @param FixtureLoaderInterface $decoratedFixtureLoader |
||
32 | */ |
||
33 | public function __construct(FixtureLoaderInterface $decoratedFixtureLoader) |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function load(SuiteInterface $suite, FixtureInterface $fixture, array $options) |
||
51 | |||
52 | /** |
||
53 | * @param SuiteInterface $suite |
||
54 | * @param FixtureEvent $fixtureEvent |
||
55 | */ |
||
56 | private function executeBeforeFixtureListeners(SuiteInterface $suite, FixtureEvent $fixtureEvent) |
||
66 | |||
67 | /** |
||
68 | * @param SuiteInterface $suite |
||
69 | * @param FixtureEvent $fixtureEvent |
||
70 | */ |
||
71 | private function executeAfterFixtureListeners(SuiteInterface $suite, FixtureEvent $fixtureEvent) |
||
81 | } |
||
82 |