Test Setup Failed
Pull Request — master (#39)
by Pierre
12:34
created
src/Knp/Rad/FixturesLoad/FixturesFactory.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -10,10 +10,14 @@
 block discarded – undo
10 10
 
11 11
 interface FixturesFactory
12 12
 {
13
+    /**
14
+     * @return void
15
+     */
13 16
     public function addProcessor(ProcessorInterface $processor);
14 17
 
15 18
     /**
16 19
      * @param object $provider
20
+     * @return void
17 21
      */
18 22
     public function addProvider($provider);
19 23
 
Please login to merge, or discard this patch.
src/Knp/Rad/FixturesLoad/Formater.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -12,11 +12,20 @@
 block discarded – undo
12 12
 
13 13
     const VERBOSITY_EXTRA = true;
14 14
 
15
+    /**
16
+     * @return void
17
+     */
15 18
     public function setOutput(OutputInterface $output);
16 19
 
17 20
     public function getVerbosity(): bool;
18 21
 
22
+    /**
23
+     * @return void
24
+     */
19 25
     public function preLoad(Event $event);
20 26
 
27
+    /**
28
+     * @return void
29
+     */
21 30
     public function postLoad(Event $event);
22 31
 }
Please login to merge, or discard this patch.