Completed
Push — develop ( a51f26...2ecf95 )
by Zack
15:32
created
vendor/illuminate/support/Facades/Redis.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -12,13 +12,13 @@
 block discarded – undo
12 12
  */
13 13
 class Redis extends Facade
14 14
 {
15
-    /**
16
-     * Get the registered name of the component.
17
-     *
18
-     * @return string
19
-     */
20
-    protected static function getFacadeAccessor()
21
-    {
22
-        return 'redis';
23
-    }
15
+	/**
16
+	 * Get the registered name of the component.
17
+	 *
18
+	 * @return string
19
+	 */
20
+	protected static function getFacadeAccessor()
21
+	{
22
+		return 'redis';
23
+	}
24 24
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,15 +10,13 @@
 block discarded – undo
10 10
  * @see \Illuminate\Redis\RedisManager
11 11
  * @see \Illuminate\Contracts\Redis\Factory
12 12
  */
13
-class Redis extends Facade
14
-{
13
+class Redis extends Facade {
15 14
     /**
16 15
      * Get the registered name of the component.
17 16
      *
18 17
      * @return string
19 18
      */
20
-    protected static function getFacadeAccessor()
21
-    {
19
+    protected static function getFacadeAccessor() {
22 20
         return 'redis';
23 21
     }
24 22
 }
Please login to merge, or discard this patch.
vendor/illuminate/support/Facades/Cache.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -28,13 +28,13 @@
 block discarded – undo
28 28
  */
29 29
 class Cache extends Facade
30 30
 {
31
-    /**
32
-     * Get the registered name of the component.
33
-     *
34
-     * @return string
35
-     */
36
-    protected static function getFacadeAccessor()
37
-    {
38
-        return 'cache';
39
-    }
31
+	/**
32
+	 * Get the registered name of the component.
33
+	 *
34
+	 * @return string
35
+	 */
36
+	protected static function getFacadeAccessor()
37
+	{
38
+		return 'cache';
39
+	}
40 40
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,15 +26,13 @@
 block discarded – undo
26 26
  * @see \Illuminate\Cache\CacheManager
27 27
  * @see \Illuminate\Cache\Repository
28 28
  */
29
-class Cache extends Facade
30
-{
29
+class Cache extends Facade {
31 30
     /**
32 31
      * Get the registered name of the component.
33 32
      *
34 33
      * @return string
35 34
      */
36
-    protected static function getFacadeAccessor()
37
-    {
35
+    protected static function getFacadeAccessor() {
38 36
         return 'cache';
39 37
     }
40 38
 }
Please login to merge, or discard this patch.
vendor/illuminate/support/Facades/Artisan.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -17,13 +17,13 @@
 block discarded – undo
17 17
  */
18 18
 class Artisan extends Facade
19 19
 {
20
-    /**
21
-     * Get the registered name of the component.
22
-     *
23
-     * @return string
24
-     */
25
-    protected static function getFacadeAccessor()
26
-    {
27
-        return ConsoleKernelContract::class;
28
-    }
20
+	/**
21
+	 * Get the registered name of the component.
22
+	 *
23
+	 * @return string
24
+	 */
25
+	protected static function getFacadeAccessor()
26
+	{
27
+		return ConsoleKernelContract::class;
28
+	}
29 29
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,15 +15,13 @@
 block discarded – undo
15 15
  *
16 16
  * @see \Illuminate\Contracts\Console\Kernel
17 17
  */
18
-class Artisan extends Facade
19
-{
18
+class Artisan extends Facade {
20 19
     /**
21 20
      * Get the registered name of the component.
22 21
      *
23 22
      * @return string
24 23
      */
25
-    protected static function getFacadeAccessor()
26
-    {
24
+    protected static function getFacadeAccessor() {
27 25
         return ConsoleKernelContract::class;
28 26
     }
29 27
 }
Please login to merge, or discard this patch.
vendor/illuminate/support/Facades/Validator.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -13,13 +13,13 @@
 block discarded – undo
13 13
  */
14 14
 class Validator extends Facade
15 15
 {
16
-    /**
17
-     * Get the registered name of the component.
18
-     *
19
-     * @return string
20
-     */
21
-    protected static function getFacadeAccessor()
22
-    {
23
-        return 'validator';
24
-    }
16
+	/**
17
+	 * Get the registered name of the component.
18
+	 *
19
+	 * @return string
20
+	 */
21
+	protected static function getFacadeAccessor()
22
+	{
23
+		return 'validator';
24
+	}
25 25
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,15 +5,13 @@
 block discarded – undo
5 5
 /**
6 6
  * @see \Illuminate\Validation\Factory
7 7
  */
8
-class Validator extends Facade
9
-{
8
+class Validator extends Facade {
10 9
     /**
11 10
      * Get the registered name of the component.
12 11
      *
13 12
      * @return string
14 13
      */
15
-    protected static function getFacadeAccessor()
16
-    {
14
+    protected static function getFacadeAccessor() {
17 15
         return 'validator';
18 16
     }
19 17
 }
Please login to merge, or discard this patch.
vendor/illuminate/support/Facades/App.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -51,13 +51,13 @@
 block discarded – undo
51 51
  */
52 52
 class App extends Facade
53 53
 {
54
-    /**
55
-     * Get the registered name of the component.
56
-     *
57
-     * @return string
58
-     */
59
-    protected static function getFacadeAccessor()
60
-    {
61
-        return 'app';
62
-    }
54
+	/**
55
+	 * Get the registered name of the component.
56
+	 *
57
+	 * @return string
58
+	 */
59
+	protected static function getFacadeAccessor()
60
+	{
61
+		return 'app';
62
+	}
63 63
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,15 +23,13 @@
 block discarded – undo
23 23
  *
24 24
  * @see \Illuminate\Foundation\Application
25 25
  */
26
-class App extends Facade
27
-{
26
+class App extends Facade {
28 27
     /**
29 28
      * Get the registered name of the component.
30 29
      *
31 30
      * @return string
32 31
      */
33
-    protected static function getFacadeAccessor()
34
-    {
32
+    protected static function getFacadeAccessor() {
35 33
         return 'app';
36 34
     }
37 35
 }
Please login to merge, or discard this patch.
vendor/illuminate/support/Facades/Broadcast.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,13 +15,13 @@
 block discarded – undo
15 15
  */
16 16
 class Broadcast extends Facade
17 17
 {
18
-    /**
19
-     * Get the registered name of the component.
20
-     *
21
-     * @return string
22
-     */
23
-    protected static function getFacadeAccessor()
24
-    {
25
-        return BroadcastingFactoryContract::class;
26
-    }
18
+	/**
19
+	 * Get the registered name of the component.
20
+	 *
21
+	 * @return string
22
+	 */
23
+	protected static function getFacadeAccessor()
24
+	{
25
+		return BroadcastingFactoryContract::class;
26
+	}
27 27
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,15 +7,13 @@
 block discarded – undo
7 7
 /**
8 8
  * @see \Illuminate\Contracts\Broadcasting\Factory
9 9
  */
10
-class Broadcast extends Facade
11
-{
10
+class Broadcast extends Facade {
12 11
     /**
13 12
      * Get the registered name of the component.
14 13
      *
15 14
      * @return string
16 15
      */
17
-    protected static function getFacadeAccessor()
18
-    {
16
+    protected static function getFacadeAccessor() {
19 17
         return BroadcastingFactoryContract::class;
20 18
     }
21 19
 }
Please login to merge, or discard this patch.
vendor/illuminate/support/Facades/DB.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -38,13 +38,13 @@
 block discarded – undo
38 38
  */
39 39
 class DB extends Facade
40 40
 {
41
-    /**
42
-     * Get the registered name of the component.
43
-     *
44
-     * @return string
45
-     */
46
-    protected static function getFacadeAccessor()
47
-    {
48
-        return 'db';
49
-    }
41
+	/**
42
+	 * Get the registered name of the component.
43
+	 *
44
+	 * @return string
45
+	 */
46
+	protected static function getFacadeAccessor()
47
+	{
48
+		return 'db';
49
+	}
50 50
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,15 +36,13 @@
 block discarded – undo
36 36
  * @see \Illuminate\Database\DatabaseManager
37 37
  * @see \Illuminate\Database\Connection
38 38
  */
39
-class DB extends Facade
40
-{
39
+class DB extends Facade {
41 40
     /**
42 41
      * Get the registered name of the component.
43 42
      *
44 43
      * @return string
45 44
      */
46
-    protected static function getFacadeAccessor()
47
-    {
45
+    protected static function getFacadeAccessor() {
48 46
         return 'db';
49 47
     }
50 48
 }
Please login to merge, or discard this patch.
vendor/illuminate/support/Facades/View.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -18,13 +18,13 @@
 block discarded – undo
18 18
  */
19 19
 class View extends Facade
20 20
 {
21
-    /**
22
-     * Get the registered name of the component.
23
-     *
24
-     * @return string
25
-     */
26
-    protected static function getFacadeAccessor()
27
-    {
28
-        return 'view';
29
-    }
21
+	/**
22
+	 * Get the registered name of the component.
23
+	 *
24
+	 * @return string
25
+	 */
26
+	protected static function getFacadeAccessor()
27
+	{
28
+		return 'view';
29
+	}
30 30
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,15 +11,13 @@
 block discarded – undo
11 11
 /**
12 12
  * @see \Illuminate\View\Factory
13 13
  */
14
-class View extends Facade
15
-{
14
+class View extends Facade {
16 15
     /**
17 16
      * Get the registered name of the component.
18 17
      *
19 18
      * @return string
20 19
      */
21
-    protected static function getFacadeAccessor()
22
-    {
20
+    protected static function getFacadeAccessor() {
23 21
         return 'view';
24 22
     }
25 23
 }
Please login to merge, or discard this patch.
vendor/illuminate/support/Facades/Response.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -24,13 +24,13 @@
 block discarded – undo
24 24
  */
25 25
 class Response extends Facade
26 26
 {
27
-    /**
28
-     * Get the registered name of the component.
29
-     *
30
-     * @return string
31
-     */
32
-    protected static function getFacadeAccessor()
33
-    {
34
-        return ResponseFactoryContract::class;
35
-    }
27
+	/**
28
+	 * Get the registered name of the component.
29
+	 *
30
+	 * @return string
31
+	 */
32
+	protected static function getFacadeAccessor()
33
+	{
34
+		return ResponseFactoryContract::class;
35
+	}
36 36
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,15 +7,13 @@
 block discarded – undo
7 7
 /**
8 8
  * @see \Illuminate\Contracts\Routing\ResponseFactory
9 9
  */
10
-class Response extends Facade
11
-{
10
+class Response extends Facade {
12 11
     /**
13 12
      * Get the registered name of the component.
14 13
      *
15 14
      * @return string
16 15
      */
17
-    protected static function getFacadeAccessor()
18
-    {
16
+    protected static function getFacadeAccessor() {
19 17
         return ResponseFactoryContract::class;
20 18
     }
21 19
 }
Please login to merge, or discard this patch.