Completed
Push — master ( 575f81...c32bd7 )
by Hannes
02:51
created
src/ExampleFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      * Check if line is a ignore anntotation
80 80
      *
81 81
      * @param  string $line
82
-     * @return boolean
82
+     * @return boolean|null
83 83
      */
84 84
     private function isIgnoreAnnotation($line)
85 85
     {
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      * Parse expectation from line
93 93
      *
94 94
      * @param  string $line
95
-     * @return Expectation|null
95
+     * @return Expectation\ExpectationInterface
96 96
      */
97 97
     private function readExpectation($line)
98 98
     {
Please login to merge, or discard this patch.
src/Command/TestCommand.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@
 block discarded – undo
26 26
                 ['README.md']
27 27
             )
28 28
             ->addOption(
29
-               'format',
30
-               'f',
31
-               InputOption::VALUE_REQUIRED,
32
-               'Force input file format'
29
+                'format',
30
+                'f',
31
+                InputOption::VALUE_REQUIRED,
32
+                'Force input file format'
33 33
             )
34 34
         ;
35 35
     }
Please login to merge, or discard this patch.