Passed
Pull Request — develop_3.0 (#466)
by Adrien
04:47
created
Spout/Reader/XLSX/Manager/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/Autoloader/Psr4Autoloader.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -119,8 +119,8 @@
 block discarded – undo
119 119
             // replace namespace separators with directory separators
120 120
             // in the relative class name, append with .php
121 121
             $file = $baseDir
122
-                  . str_replace('\\', '/', $relativeClass)
123
-                  . '.php';
122
+                    . str_replace('\\', '/', $relativeClass)
123
+                    . '.php';
124 124
 
125 125
             // if the mapped file exists, require it
126 126
             if ($this->requireFile($file)) {
Please login to merge, or discard this patch.