Failed Conditions
Push — perf-tests ( 2fc93e...db6806 )
by Adrien
13:45
created
Spout/Reader/XLSX/Helper/SharedStringsCaching/CachingStrategyFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
     /**
115 115
      * Returns the PHP "memory_limit" in Kilobytes
116 116
      *
117
-     * @return float
117
+     * @return integer
118 118
      */
119 119
     protected function getMemoryLimitInKB()
120 120
     {
Please login to merge, or discard this patch.
src/Spout/Writer/ODS/Helper/StyleHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     }
30 30
 
31 31
     /**
32
-     * @return string[] List of used fonts name
32
+     * @return integer[] List of used fonts name
33 33
      */
34 34
     protected function getUsedFonts()
35 35
     {
Please login to merge, or discard this patch.
src/Spout/Autoloader/Psr4Autoloader.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      * Loads the class file for a given class name.
65 65
      *
66 66
      * @param string $class The fully-qualified class name.
67
-     * @return mixed The mapped file name on success, or boolean false on
67
+     * @return string|false The mapped file name on success, or boolean false on
68 68
      * failure.
69 69
      */
70 70
     public function loadClass($class)
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      *
103 103
      * @param string $prefix The namespace prefix.
104 104
      * @param string $relativeClass The relative class name.
105
-     * @return mixed Boolean false if no mapped file can be loaded, or the
105
+     * @return false|string Boolean false if no mapped file can be loaded, or the
106 106
      * name of the mapped file that was loaded.
107 107
      */
108 108
     protected function loadMappedFile($prefix, $relativeClass)
Please login to merge, or discard this patch.