Test Setup Failed
Push — master ( 9695db...7c13fc )
by Gabriel
01:27
created
src/Scrapers/AbstractScraper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,6 +115,6 @@
 block discarded – undo
115 115
         $classNamespacePath = implode('\\', $partsClassName);
116 116
         $classNamespacePath = str_replace('\Scrapers', '', $classNamespacePath);
117 117
 
118
-        return $classNamespacePath.'\Parsers\\'.$classFirstName;
118
+        return $classNamespacePath . '\Parsers\\' . $classFirstName;
119 119
     }
120 120
 }
Please login to merge, or discard this patch.
src/Helper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
         $str = self::convertToLowercase($str);
62 62
         return preg_replace_callback(
63 63
             '/_([a-z])/',
64
-            function ($match) {
64
+            function($match) {
65 65
                 return strtoupper($match[1]);
66 66
             },
67 67
             $str
Please login to merge, or discard this patch.