Completed
Push — release-2.1 ( c081b8...721c0e )
by John
06:43
created
Sources/ReCaptcha/autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.