@@ -115,6 +115,6 @@ |
||
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 | } |
@@ -61,7 +61,7 @@ |
||
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 |