@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | * classes. |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -spl_autoload_register(function ($class) { |
|
| 9 | +spl_autoload_register(function($class) { |
|
| 10 | 10 | if (substr($class, 0, 10) !== 'ReCaptcha\\') { |
| 11 | 11 | /* |
| 12 | 12 | * If the class does not lie under the "ReCaptcha" namespace, |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | $class = str_replace('\\', '/', $class); |
| 24 | 24 | |
| 25 | 25 | // Check under the current directory. |
| 26 | - $path = __DIR__.'/'.$class.'.php'; |
|
| 26 | + $path = __DIR__ . '/' . $class . '.php'; |
|
| 27 | 27 | if (is_readable($path)) { |
| 28 | 28 | require_once $path; |
| 29 | 29 | return; |