@@ -173,7 +173,7 @@ |
||
173 | 173 | |
174 | 174 | public static function extractPrefix(string $method): string |
175 | 175 | { |
176 | - preg_match( '/[A-Z]/', $method, $matches, PREG_OFFSET_CAPTURE ); |
|
176 | + preg_match('/[A-Z]/', $method, $matches, PREG_OFFSET_CAPTURE); |
|
177 | 177 | return substr($method, 0, $matches[0][1]); |
178 | 178 | } |
179 | 179 |