@@ -15,5 +15,8 @@ |
||
15 | 15 | |
16 | 16 | interface BeforeFixtureListenerInterface extends ListenerInterface |
17 | 17 | { |
18 | + /** |
|
19 | + * @return void |
|
20 | + */ |
|
18 | 21 | public function beforeFixture(FixtureEvent $fixtureEvent, array $options): void; |
19 | 22 | } |
@@ -15,5 +15,8 @@ |
||
15 | 15 | |
16 | 16 | interface BeforeSuiteListenerInterface extends ListenerInterface |
17 | 17 | { |
18 | + /** |
|
19 | + * @return void |
|
20 | + */ |
|
18 | 21 | public function beforeSuite(SuiteEvent $suiteEvent, array $options): void; |
19 | 22 | } |
@@ -18,5 +18,8 @@ |
||
18 | 18 | |
19 | 19 | interface FixtureLoaderInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function load(SuiteInterface $suite, FixtureInterface $fixture, array $options): void; |
22 | 25 | } |
@@ -17,5 +17,8 @@ |
||
17 | 17 | |
18 | 18 | interface SuiteLoaderInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function load(SuiteInterface $suite): void; |
21 | 24 | } |
@@ -76,6 +76,7 @@ |
||
76 | 76 | |
77 | 77 | /** |
78 | 78 | * @param Collaborator[] ...$collaborators |
79 | + * @param FixtureInterface $collaborators |
|
79 | 80 | */ |
80 | 81 | private function createGenerator(Collaborator ...$collaborators): \Generator |
81 | 82 | { |