Completed
Push — _tmp_8a9efae5cd9710c4450da6460... ( 8a9efa )
by Kamil
249:18 queued 231:42
created
Listener/BeforeFixtureListenerInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,5 +15,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Listener/BeforeSuiteListenerInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,5 +15,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Loader/FixtureLoaderInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,5 +18,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Loader/SuiteLoaderInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
 
18 18
 interface SuiteLoaderInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function load(SuiteInterface $suite): void;
21 24
 }
Please login to merge, or discard this patch.
spec/Suite/SuiteSpec.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -76,6 +76,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.