Completed
Push — master ( c1c337...22b0ae )
by Hashem
13s
created
tests/CaptchaTest.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -7,24 +7,24 @@
 block discarded – undo
7 7
 
8 8
 class CaptchaTest extends TestCase
9 9
 {
10
-	/**
11
-	 * @var Captcha
12
-	 */
13
-	private $captcha;
10
+    /**
11
+     * @var Captcha
12
+     */
13
+    private $captcha;
14 14
 
15
-	/**
16
-	 * setUp
17
-	 */
18
-	public function setUp()
19
-	{
20
-		$this->captcha = new Captcha();
21
-	}
15
+    /**
16
+     * setUp
17
+     */
18
+    public function setUp()
19
+    {
20
+        $this->captcha = new Captcha();
21
+    }
22 22
 
23
-	/**
24
-	 * Test captcha.
25
-	 */
26
-	public function testCaptcha()
27
-	{
28
-		$this->assertTrue($this->captcha instanceof Captcha);
29
-	}
23
+    /**
24
+     * Test captcha.
25
+     */
26
+    public function testCaptcha()
27
+    {
28
+        $this->assertTrue($this->captcha instanceof Captcha);
29
+    }
30 30
 }
31 31
\ No newline at end of file
Please login to merge, or discard this patch.
src/Drivers/Simple/SimpleDriver.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,8 +31,8 @@  discard block
 block discarded – undo
31 31
         $this->settings = (object) $settings;
32 32
 
33 33
         $this->bindViews()
34
-             ->bindRoutes()
35
-             ->publishResources();
34
+                ->bindRoutes()
35
+                ->publishResources();
36 36
     }
37 37
 
38 38
     /**
@@ -69,8 +69,8 @@  discard block
 block discarded – undo
69 69
         $destinationPath = resource_path('views/vendor/captchaSimpleDriver');
70 70
 
71 71
         $this->serviceProvider
72
-             ->publish(__DIR__ . '/resources/views', $destinationPath, 'views')
73
-             ->publish(__DIR__ . '/resources/assets', $destinationPath.'/assets', 'assets');
72
+                ->publish(__DIR__ . '/resources/views', $destinationPath, 'views')
73
+                ->publish(__DIR__ . '/resources/assets', $destinationPath.'/assets', 'assets');
74 74
 
75 75
         return $this;
76 76
     }
Please login to merge, or discard this patch.