Passed
Push — master ( 6046d2...3d03c1 )
by Arjan
39s
created
src/Statistics/ReferencePoint.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     }
38 38
 
39 39
     /**
40
-     * @return float
40
+     * @return integer
41 41
      */
42 42
     public function getKiloBytes()
43 43
     {
Please login to merge, or discard this patch.
src/Statistics/StatisticsInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * Get all the steps which are measured.
19 19
      *
20
-     * @return array
20
+     * @return ReferencePoint[]
21 21
      */
22 22
     public function getReferencePoints();
23 23
 
Please login to merge, or discard this patch.
src/Exception/FileNotFoundException.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
     /**
8 8
      * @param string    $message      Exception message to throw
9 9
      * @param int       $code         Exception code
10
-     * @param Exception $previous     previous exception used for the exception chaining
10
+     * @param \Exception $previous     previous exception used for the exception chaining
11 11
      */
12 12
     public function __construct($message = 'The file does not exists.', $code = 0, \Exception $previous = null)
13 13
     {
Please login to merge, or discard this patch.