Completed
Pull Request — develop (#1810)
by Zack
20:16
created
vendor/illuminate/contracts/Cookie/QueueingFactory.php 3 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Contracts\Cookie;
4 4
 
5
-interface QueueingFactory extends Factory
6
-{
5
+interface QueueingFactory extends Factory {
7 6
     /**
8 7
      * Queue a cookie to send with the next response.
9 8
      *
Please login to merge, or discard this patch.
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -10,25 +10,25 @@
 block discarded – undo
10 10
 
11 11
 interface QueueingFactory extends Factory
12 12
 {
13
-    /**
14
-     * Queue a cookie to send with the next response.
15
-     *
16
-     * @param  array  $parameters
17
-     * @return void
18
-     */
19
-    public function queue(...$parameters);
13
+	/**
14
+	 * Queue a cookie to send with the next response.
15
+	 *
16
+	 * @param  array  $parameters
17
+	 * @return void
18
+	 */
19
+	public function queue(...$parameters);
20 20
 
21
-    /**
22
-     * Remove a cookie from the queue.
23
-     *
24
-     * @param  string  $name
25
-     */
26
-    public function unqueue($name);
21
+	/**
22
+	 * Remove a cookie from the queue.
23
+	 *
24
+	 * @param  string  $name
25
+	 */
26
+	public function unqueue($name);
27 27
 
28
-    /**
29
-     * Get the cookies which have been queued for the next request.
30
-     *
31
-     * @return array
32
-     */
33
-    public function getQueuedCookies();
28
+	/**
29
+	 * Get the cookies which have been queued for the next request.
30
+	 *
31
+	 * @return array
32
+	 */
33
+	public function getQueuedCookies();
34 34
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,14 +16,14 @@
 block discarded – undo
16 16
      * @param  array  $parameters
17 17
      * @return void
18 18
      */
19
-    public function queue(...$parameters);
19
+    public function queue( ...$parameters );
20 20
 
21 21
     /**
22 22
      * Remove a cookie from the queue.
23 23
      *
24 24
      * @param  string  $name
25 25
      */
26
-    public function unqueue($name);
26
+    public function unqueue( $name );
27 27
 
28 28
     /**
29 29
      * Get the cookies which have been queued for the next request.
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Cookie/Factory.php 3 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Contracts\Cookie;
4 4
 
5
-interface Factory
6
-{
5
+interface Factory {
7 6
     /**
8 7
      * Create a new cookie instance.
9 8
      *
Please login to merge, or discard this patch.
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -4,40 +4,40 @@
 block discarded – undo
4 4
 
5 5
 interface Factory
6 6
 {
7
-    /**
8
-     * Create a new cookie instance.
9
-     *
10
-     * @param  string  $name
11
-     * @param  string  $value
12
-     * @param  int     $minutes
13
-     * @param  string  $path
14
-     * @param  string  $domain
15
-     * @param  bool    $secure
16
-     * @param  bool    $httpOnly
17
-     * @return \Symfony\Component\HttpFoundation\Cookie
18
-     */
19
-    public function make($name, $value, $minutes = 0, $path = null, $domain = null, $secure = false, $httpOnly = true);
7
+	/**
8
+	 * Create a new cookie instance.
9
+	 *
10
+	 * @param  string  $name
11
+	 * @param  string  $value
12
+	 * @param  int     $minutes
13
+	 * @param  string  $path
14
+	 * @param  string  $domain
15
+	 * @param  bool    $secure
16
+	 * @param  bool    $httpOnly
17
+	 * @return \Symfony\Component\HttpFoundation\Cookie
18
+	 */
19
+	public function make($name, $value, $minutes = 0, $path = null, $domain = null, $secure = false, $httpOnly = true);
20 20
 
21
-    /**
22
-     * Create a cookie that lasts "forever" (five years).
23
-     *
24
-     * @param  string  $name
25
-     * @param  string  $value
26
-     * @param  string  $path
27
-     * @param  string  $domain
28
-     * @param  bool    $secure
29
-     * @param  bool    $httpOnly
30
-     * @return \Symfony\Component\HttpFoundation\Cookie
31
-     */
32
-    public function forever($name, $value, $path = null, $domain = null, $secure = false, $httpOnly = true);
21
+	/**
22
+	 * Create a cookie that lasts "forever" (five years).
23
+	 *
24
+	 * @param  string  $name
25
+	 * @param  string  $value
26
+	 * @param  string  $path
27
+	 * @param  string  $domain
28
+	 * @param  bool    $secure
29
+	 * @param  bool    $httpOnly
30
+	 * @return \Symfony\Component\HttpFoundation\Cookie
31
+	 */
32
+	public function forever($name, $value, $path = null, $domain = null, $secure = false, $httpOnly = true);
33 33
 
34
-    /**
35
-     * Expire the given cookie.
36
-     *
37
-     * @param  string  $name
38
-     * @param  string  $path
39
-     * @param  string  $domain
40
-     * @return \Symfony\Component\HttpFoundation\Cookie
41
-     */
42
-    public function forget($name, $path = null, $domain = null);
34
+	/**
35
+	 * Expire the given cookie.
36
+	 *
37
+	 * @param  string  $name
38
+	 * @param  string  $path
39
+	 * @param  string  $domain
40
+	 * @return \Symfony\Component\HttpFoundation\Cookie
41
+	 */
42
+	public function forget($name, $path = null, $domain = null);
43 43
 }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
      * @param  bool    $httpOnly
17 17
      * @return \Symfony\Component\HttpFoundation\Cookie
18 18
      */
19
-    public function make($name, $value, $minutes = 0, $path = null, $domain = null, $secure = false, $httpOnly = true);
19
+    public function make( $name, $value, $minutes = 0, $path = null, $domain = null, $secure = false, $httpOnly = true );
20 20
 
21 21
     /**
22 22
      * Create a cookie that lasts "forever" (five years).
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      * @param  bool    $httpOnly
30 30
      * @return \Symfony\Component\HttpFoundation\Cookie
31 31
      */
32
-    public function forever($name, $value, $path = null, $domain = null, $secure = false, $httpOnly = true);
32
+    public function forever( $name, $value, $path = null, $domain = null, $secure = false, $httpOnly = true );
33 33
 
34 34
     /**
35 35
      * Expire the given cookie.
@@ -39,5 +39,5 @@  discard block
 block discarded – undo
39 39
      * @param  string  $domain
40 40
      * @return \Symfony\Component\HttpFoundation\Cookie
41 41
      */
42
-    public function forget($name, $path = null, $domain = null);
42
+    public function forget( $name, $path = null, $domain = null );
43 43
 }
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Redis/Factory.php 3 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Contracts\Redis;
4 4
 
5
-interface Factory
6
-{
5
+interface Factory {
7 6
     /**
8 7
      * Get a Redis connection by name.
9 8
      *
Please login to merge, or discard this patch.
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@
 block discarded – undo
10 10
 
11 11
 interface Factory
12 12
 {
13
-    /**
14
-     * Get a Redis connection by name.
15
-     *
16
-     * @param  string  $name
17
-     * @return \Illuminate\Redis\Connections\Connection
18
-     */
19
-    public function connection($name = null);
13
+	/**
14
+	 * Get a Redis connection by name.
15
+	 *
16
+	 * @param  string  $name
17
+	 * @return \Illuminate\Redis\Connections\Connection
18
+	 */
19
+	public function connection($name = null);
20 20
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,5 +16,5 @@
 block discarded – undo
16 16
      * @param  string  $name
17 17
      * @return \Illuminate\Redis\Connections\Connection
18 18
      */
19
-    public function connection($name = null);
19
+    public function connection( $name = null );
20 20
 }
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Container/ContextualBindingBuilder.php 3 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Contracts\Container;
4 4
 
5
-interface ContextualBindingBuilder
6
-{
5
+interface ContextualBindingBuilder {
7 6
     /**
8 7
      * Define the abstract target that depends on the context.
9 8
      *
Please login to merge, or discard this patch.
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -10,19 +10,19 @@
 block discarded – undo
10 10
 
11 11
 interface ContextualBindingBuilder
12 12
 {
13
-    /**
14
-     * Define the abstract target that depends on the context.
15
-     *
16
-     * @param  string  $abstract
17
-     * @return $this
18
-     */
19
-    public function needs($abstract);
13
+	/**
14
+	 * Define the abstract target that depends on the context.
15
+	 *
16
+	 * @param  string  $abstract
17
+	 * @return $this
18
+	 */
19
+	public function needs($abstract);
20 20
 
21
-    /**
22
-     * Define the implementation for the contextual binding.
23
-     *
24
-     * @param  \Closure|string  $implementation
25
-     * @return void
26
-     */
27
-    public function give($implementation);
21
+	/**
22
+	 * Define the implementation for the contextual binding.
23
+	 *
24
+	 * @param  \Closure|string  $implementation
25
+	 * @return void
26
+	 */
27
+	public function give($implementation);
28 28
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
      * @param  string  $abstract
17 17
      * @return $this
18 18
      */
19
-    public function needs($abstract);
19
+    public function needs( $abstract );
20 20
 
21 21
     /**
22 22
      * Define the implementation for the contextual binding.
@@ -24,5 +24,5 @@  discard block
 block discarded – undo
24 24
      * @param  \Closure|string  $implementation
25 25
      * @return void
26 26
      */
27
-    public function give($implementation);
27
+    public function give( $implementation );
28 28
 }
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Foundation/Application.php 3 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Contracts\Container\Container;
6 6
 
7
-interface Application extends Container
8
-{
7
+interface Application extends Container {
9 8
     /**
10 9
      * Get the version number of the application.
11 10
      *
Please login to merge, or discard this patch.
Indentation   +73 added lines, -73 removed lines patch added patch discarded remove patch
@@ -6,87 +6,87 @@
 block discarded – undo
6 6
 
7 7
 interface Application extends Container
8 8
 {
9
-    /**
10
-     * Get the version number of the application.
11
-     *
12
-     * @return string
13
-     */
14
-    public function version();
9
+	/**
10
+	 * Get the version number of the application.
11
+	 *
12
+	 * @return string
13
+	 */
14
+	public function version();
15 15
 
16
-    /**
17
-     * Get the base path of the Laravel installation.
18
-     *
19
-     * @return string
20
-     */
21
-    public function basePath();
16
+	/**
17
+	 * Get the base path of the Laravel installation.
18
+	 *
19
+	 * @return string
20
+	 */
21
+	public function basePath();
22 22
 
23
-    /**
24
-     * Get or check the current application environment.
25
-     *
26
-     * @return string
27
-     */
28
-    public function environment();
23
+	/**
24
+	 * Get or check the current application environment.
25
+	 *
26
+	 * @return string
27
+	 */
28
+	public function environment();
29 29
 
30
-    /**
31
-     * Determine if the application is currently down for maintenance.
32
-     *
33
-     * @return bool
34
-     */
35
-    public function isDownForMaintenance();
30
+	/**
31
+	 * Determine if the application is currently down for maintenance.
32
+	 *
33
+	 * @return bool
34
+	 */
35
+	public function isDownForMaintenance();
36 36
 
37
-    /**
38
-     * Register all of the configured providers.
39
-     *
40
-     * @return void
41
-     */
42
-    public function registerConfiguredProviders();
37
+	/**
38
+	 * Register all of the configured providers.
39
+	 *
40
+	 * @return void
41
+	 */
42
+	public function registerConfiguredProviders();
43 43
 
44
-    /**
45
-     * Register a service provider with the application.
46
-     *
47
-     * @param  \Illuminate\Support\ServiceProvider|string  $provider
48
-     * @param  array  $options
49
-     * @param  bool   $force
50
-     * @return \Illuminate\Support\ServiceProvider
51
-     */
52
-    public function register($provider, $options = [], $force = false);
44
+	/**
45
+	 * Register a service provider with the application.
46
+	 *
47
+	 * @param  \Illuminate\Support\ServiceProvider|string  $provider
48
+	 * @param  array  $options
49
+	 * @param  bool   $force
50
+	 * @return \Illuminate\Support\ServiceProvider
51
+	 */
52
+	public function register($provider, $options = [], $force = false);
53 53
 
54
-    /**
55
-     * Register a deferred provider and service.
56
-     *
57
-     * @param  string  $provider
58
-     * @param  string|null  $service
59
-     * @return void
60
-     */
61
-    public function registerDeferredProvider($provider, $service = null);
54
+	/**
55
+	 * Register a deferred provider and service.
56
+	 *
57
+	 * @param  string  $provider
58
+	 * @param  string|null  $service
59
+	 * @return void
60
+	 */
61
+	public function registerDeferredProvider($provider, $service = null);
62 62
 
63
-    /**
64
-     * Boot the application's service providers.
65
-     *
66
-     * @return void
67
-     */
68
-    public function boot();
63
+	/**
64
+	 * Boot the application's service providers.
65
+	 *
66
+	 * @return void
67
+	 */
68
+	public function boot();
69 69
 
70
-    /**
71
-     * Register a new boot listener.
72
-     *
73
-     * @param  mixed  $callback
74
-     * @return void
75
-     */
76
-    public function booting($callback);
70
+	/**
71
+	 * Register a new boot listener.
72
+	 *
73
+	 * @param  mixed  $callback
74
+	 * @return void
75
+	 */
76
+	public function booting($callback);
77 77
 
78
-    /**
79
-     * Register a new "booted" listener.
80
-     *
81
-     * @param  mixed  $callback
82
-     * @return void
83
-     */
84
-    public function booted($callback);
78
+	/**
79
+	 * Register a new "booted" listener.
80
+	 *
81
+	 * @param  mixed  $callback
82
+	 * @return void
83
+	 */
84
+	public function booted($callback);
85 85
 
86
-    /**
87
-     * Get the path to the cached services.php file.
88
-     *
89
-     * @return string
90
-     */
91
-    public function getCachedServicesPath();
86
+	/**
87
+	 * Get the path to the cached services.php file.
88
+	 *
89
+	 * @return string
90
+	 */
91
+	public function getCachedServicesPath();
92 92
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      * @param  bool   $force
50 50
      * @return \Illuminate\Support\ServiceProvider
51 51
      */
52
-    public function register($provider, $options = [], $force = false);
52
+    public function register( $provider, $options = [ ], $force = false );
53 53
 
54 54
     /**
55 55
      * Register a deferred provider and service.
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      * @param  string|null  $service
59 59
      * @return void
60 60
      */
61
-    public function registerDeferredProvider($provider, $service = null);
61
+    public function registerDeferredProvider( $provider, $service = null );
62 62
 
63 63
     /**
64 64
      * Boot the application's service providers.
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      * @param  mixed  $callback
74 74
      * @return void
75 75
      */
76
-    public function booting($callback);
76
+    public function booting( $callback );
77 77
 
78 78
     /**
79 79
      * Register a new "booted" listener.
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
      * @param  mixed  $callback
82 82
      * @return void
83 83
      */
84
-    public function booted($callback);
84
+    public function booted( $callback );
85 85
 
86 86
     /**
87 87
      * Get the path to the cached services.php file.
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Support/MessageProvider.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,10 +4,10 @@
 block discarded – undo
4 4
 
5 5
 interface MessageProvider
6 6
 {
7
-    /**
8
-     * Get the messages for the instance.
9
-     *
10
-     * @return \Illuminate\Contracts\Support\MessageBag
11
-     */
12
-    public function getMessageBag();
7
+	/**
8
+	 * Get the messages for the instance.
9
+	 *
10
+	 * @return \Illuminate\Contracts\Support\MessageBag
11
+	 */
12
+	public function getMessageBag();
13 13
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Contracts\Support;
4 4
 
5
-interface MessageProvider
6
-{
5
+interface MessageProvider {
7 6
     /**
8 7
      * Get the messages for the instance.
9 8
      *
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Support/Arrayable.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,10 +4,10 @@
 block discarded – undo
4 4
 
5 5
 interface Arrayable
6 6
 {
7
-    /**
8
-     * Get the instance as an array.
9
-     *
10
-     * @return array
11
-     */
12
-    public function toArray();
7
+	/**
8
+	 * Get the instance as an array.
9
+	 *
10
+	 * @return array
11
+	 */
12
+	public function toArray();
13 13
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Contracts\Support;
4 4
 
5
-interface Arrayable
6
-{
5
+interface Arrayable {
7 6
     /**
8 7
      * Get the instance as an array.
9 8
      *
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Support/Htmlable.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,10 +4,10 @@
 block discarded – undo
4 4
 
5 5
 interface Htmlable
6 6
 {
7
-    /**
8
-     * Get content as a string of HTML.
9
-     *
10
-     * @return string
11
-     */
12
-    public function toHtml();
7
+	/**
8
+	 * Get content as a string of HTML.
9
+	 *
10
+	 * @return string
11
+	 */
12
+	public function toHtml();
13 13
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Contracts\Support;
4 4
 
5
-interface Htmlable
6
-{
5
+interface Htmlable {
7 6
     /**
8 7
      * Get content as a string of HTML.
9 8
      *
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Support/Renderable.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,10 +4,10 @@
 block discarded – undo
4 4
 
5 5
 interface Renderable
6 6
 {
7
-    /**
8
-     * Get the evaluated contents of the object.
9
-     *
10
-     * @return string
11
-     */
12
-    public function render();
7
+	/**
8
+	 * Get the evaluated contents of the object.
9
+	 *
10
+	 * @return string
11
+	 */
12
+	public function render();
13 13
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Contracts\Support;
4 4
 
5
-interface Renderable
6
-{
5
+interface Renderable {
7 6
     /**
8 7
      * Get the evaluated contents of the object.
9 8
      *
Please login to merge, or discard this patch.