Completed
Pull Request — develop (#1810)
by Zack
20:16
created
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.
vendor/illuminate/support/Facades/Crypt.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 Crypt 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 'encrypter';
26
-    }
18
+	/**
19
+	 * Get the registered name of the component.
20
+	 *
21
+	 * @return string
22
+	 */
23
+	protected static function getFacadeAccessor()
24
+	{
25
+		return 'encrypter';
26
+	}
27 27
 }
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\Encryption\Encrypter
13 13
  */
14
-class Crypt extends Facade
15
-{
14
+class Crypt 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 'encrypter';
24 22
     }
25 23
 }
Please login to merge, or discard this patch.
vendor/illuminate/support/Facades/Request.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -91,13 +91,13 @@
 block discarded – undo
91 91
  */
92 92
 class Request extends Facade
93 93
 {
94
-    /**
95
-     * Get the registered name of the component.
96
-     *
97
-     * @return string
98
-     */
99
-    protected static function getFacadeAccessor()
100
-    {
101
-        return 'request';
102
-    }
94
+	/**
95
+	 * Get the registered name of the component.
96
+	 *
97
+	 * @return string
98
+	 */
99
+	protected static function getFacadeAccessor()
100
+	{
101
+		return 'request';
102
+	}
103 103
 }
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\Http\Request
13 13
  */
14
-class Request extends Facade
15
-{
14
+class Request 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 'request';
24 22
     }
25 23
 }
Please login to merge, or discard this patch.
vendor/illuminate/support/Facades/Redirect.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -23,13 +23,13 @@
 block discarded – undo
23 23
  */
24 24
 class Redirect extends Facade
25 25
 {
26
-    /**
27
-     * Get the registered name of the component.
28
-     *
29
-     * @return string
30
-     */
31
-    protected static function getFacadeAccessor()
32
-    {
33
-        return 'redirect';
34
-    }
26
+	/**
27
+	 * Get the registered name of the component.
28
+	 *
29
+	 * @return string
30
+	 */
31
+	protected static function getFacadeAccessor()
32
+	{
33
+		return 'redirect';
34
+	}
35 35
 }
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\Routing\Redirector
13 13
  */
14
-class Redirect extends Facade
15
-{
14
+class Redirect 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 'redirect';
24 22
     }
25 23
 }
Please login to merge, or discard this patch.
vendor/illuminate/support/Facades/Lang.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -14,13 +14,13 @@
 block discarded – undo
14 14
  */
15 15
 class Lang extends Facade
16 16
 {
17
-    /**
18
-     * Get the registered name of the component.
19
-     *
20
-     * @return string
21
-     */
22
-    protected static function getFacadeAccessor()
23
-    {
24
-        return 'translator';
25
-    }
17
+	/**
18
+	 * Get the registered name of the component.
19
+	 *
20
+	 * @return string
21
+	 */
22
+	protected static function getFacadeAccessor()
23
+	{
24
+		return 'translator';
25
+	}
26 26
 }
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\Translation\Translator
7 7
  */
8
-class Lang extends Facade
9
-{
8
+class Lang 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 'translator';
18 16
     }
19 17
 }
Please login to merge, or discard this patch.
vendor/illuminate/support/Facades/Hash.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 Hash 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 'hash';
24
-    }
16
+	/**
17
+	 * Get the registered name of the component.
18
+	 *
19
+	 * @return string
20
+	 */
21
+	protected static function getFacadeAccessor()
22
+	{
23
+		return 'hash';
24
+	}
25 25
 }
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\Hashing\BcryptHasher
13 13
  */
14
-class Hash extends Facade
15
-{
14
+class Hash 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 'hash';
24 22
     }
25 23
 }
Please login to merge, or discard this patch.
vendor/illuminate/support/Facades/Config.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -14,13 +14,13 @@
 block discarded – undo
14 14
  */
15 15
 class Config extends Facade
16 16
 {
17
-    /**
18
-     * Get the registered name of the component.
19
-     *
20
-     * @return string
21
-     */
22
-    protected static function getFacadeAccessor()
23
-    {
24
-        return 'config';
25
-    }
17
+	/**
18
+	 * Get the registered name of the component.
19
+	 *
20
+	 * @return string
21
+	 */
22
+	protected static function getFacadeAccessor()
23
+	{
24
+		return 'config';
25
+	}
26 26
 }
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\Config\Repository
13 13
  */
14
-class Config extends Facade
15
-{
14
+class Config 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 'config';
24 22
     }
25 23
 }
Please login to merge, or discard this patch.
vendor/illuminate/support/Facades/URL.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -26,13 +26,13 @@
 block discarded – undo
26 26
  */
27 27
 class URL extends Facade
28 28
 {
29
-    /**
30
-     * Get the registered name of the component.
31
-     *
32
-     * @return string
33
-     */
34
-    protected static function getFacadeAccessor()
35
-    {
36
-        return 'url';
37
-    }
29
+	/**
30
+	 * Get the registered name of the component.
31
+	 *
32
+	 * @return string
33
+	 */
34
+	protected static function getFacadeAccessor()
35
+	{
36
+		return 'url';
37
+	}
38 38
 }
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\Routing\UrlGenerator
13 13
  */
14
-class URL extends Facade
15
-{
14
+class URL 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 'url';
24 22
     }
25 23
 }
Please login to merge, or discard this patch.