Completed
Push — develop ( a51f26...2ecf95 )
by Zack
15:32
created
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.
vendor/illuminate/contracts/Support/Jsonable.php 3 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -4,11 +4,11 @@
 block discarded – undo
4 4
 
5 5
 interface Jsonable
6 6
 {
7
-    /**
8
-     * Convert the object to its JSON representation.
9
-     *
10
-     * @param  int  $options
11
-     * @return string
12
-     */
13
-    public function toJson($options = 0);
7
+	/**
8
+	 * Convert the object to its JSON representation.
9
+	 *
10
+	 * @param  int  $options
11
+	 * @return string
12
+	 */
13
+	public function toJson($options = 0);
14 14
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,5 +10,5 @@
 block discarded – undo
10 10
      * @param  int  $options
11 11
      * @return string
12 12
      */
13
-    public function toJson($options = 0);
13
+    public function toJson( $options = 0 );
14 14
 }
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 Jsonable
6
-{
5
+interface Jsonable {
7 6
     /**
8 7
      * Convert the object to its JSON representation.
9 8
      *
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Notifications/Dispatcher.php 3 patches
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -4,21 +4,21 @@
 block discarded – undo
4 4
 
5 5
 interface Dispatcher
6 6
 {
7
-    /**
8
-     * Send the given notification to the given notifiable entities.
9
-     *
10
-     * @param  \Illuminate\Support\Collection|array|mixed  $notifiables
11
-     * @param  mixed  $notification
12
-     * @return void
13
-     */
14
-    public function send($notifiables, $notification);
7
+	/**
8
+	 * Send the given notification to the given notifiable entities.
9
+	 *
10
+	 * @param  \Illuminate\Support\Collection|array|mixed  $notifiables
11
+	 * @param  mixed  $notification
12
+	 * @return void
13
+	 */
14
+	public function send($notifiables, $notification);
15 15
 
16
-    /**
17
-     * Send the given notification immediately.
18
-     *
19
-     * @param  \Illuminate\Support\Collection|array|mixed  $notifiables
20
-     * @param  mixed  $notification
21
-     * @return void
22
-     */
23
-    public function sendNow($notifiables, $notification);
16
+	/**
17
+	 * Send the given notification immediately.
18
+	 *
19
+	 * @param  \Illuminate\Support\Collection|array|mixed  $notifiables
20
+	 * @param  mixed  $notification
21
+	 * @return void
22
+	 */
23
+	public function sendNow($notifiables, $notification);
24 24
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      * @param  mixed  $notification
12 12
      * @return void
13 13
      */
14
-    public function send($notifiables, $notification);
14
+    public function send( $notifiables, $notification );
15 15
 
16 16
     /**
17 17
      * Send the given notification immediately.
@@ -20,5 +20,5 @@  discard block
 block discarded – undo
20 20
      * @param  mixed  $notification
21 21
      * @return void
22 22
      */
23
-    public function sendNow($notifiables, $notification);
23
+    public function sendNow( $notifiables, $notification );
24 24
 }
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\Notifications;
4 4
 
5
-interface Dispatcher
6
-{
5
+interface Dispatcher {
7 6
     /**
8 7
      * Send the given notification to the given notifiable entities.
9 8
      *
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Notifications/Factory.php 3 patches
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -4,29 +4,29 @@
 block discarded – undo
4 4
 
5 5
 interface Factory
6 6
 {
7
-    /**
8
-     * Get a channel instance by name.
9
-     *
10
-     * @param  string|null  $name
11
-     * @return mixed
12
-     */
13
-    public function channel($name = null);
7
+	/**
8
+	 * Get a channel instance by name.
9
+	 *
10
+	 * @param  string|null  $name
11
+	 * @return mixed
12
+	 */
13
+	public function channel($name = null);
14 14
 
15
-    /**
16
-     * Send the given notification to the given notifiable entities.
17
-     *
18
-     * @param  \Illuminate\Support\Collection|array|mixed  $notifiables
19
-     * @param  mixed  $notification
20
-     * @return void
21
-     */
22
-    public function send($notifiables, $notification);
15
+	/**
16
+	 * Send the given notification to the given notifiable entities.
17
+	 *
18
+	 * @param  \Illuminate\Support\Collection|array|mixed  $notifiables
19
+	 * @param  mixed  $notification
20
+	 * @return void
21
+	 */
22
+	public function send($notifiables, $notification);
23 23
 
24
-    /**
25
-     * Send the given notification immediately.
26
-     *
27
-     * @param  \Illuminate\Support\Collection|array|mixed  $notifiables
28
-     * @param  mixed  $notification
29
-     * @return void
30
-     */
31
-    public function sendNow($notifiables, $notification);
24
+	/**
25
+	 * Send the given notification immediately.
26
+	 *
27
+	 * @param  \Illuminate\Support\Collection|array|mixed  $notifiables
28
+	 * @param  mixed  $notification
29
+	 * @return void
30
+	 */
31
+	public function sendNow($notifiables, $notification);
32 32
 }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
      * @param  string|null  $name
11 11
      * @return mixed
12 12
      */
13
-    public function channel($name = null);
13
+    public function channel( $name = null );
14 14
 
15 15
     /**
16 16
      * Send the given notification to the given notifiable entities.
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      * @param  mixed  $notification
20 20
      * @return void
21 21
      */
22
-    public function send($notifiables, $notification);
22
+    public function send( $notifiables, $notification );
23 23
 
24 24
     /**
25 25
      * Send the given notification immediately.
@@ -28,5 +28,5 @@  discard block
 block discarded – undo
28 28
      * @param  mixed  $notification
29 29
      * @return void
30 30
      */
31
-    public function sendNow($notifiables, $notification);
31
+    public function sendNow( $notifiables, $notification );
32 32
 }
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\Notifications;
4 4
 
5
-interface Factory
6
-{
5
+interface Factory {
7 6
     /**
8 7
      * Get a channel instance by name.
9 8
      *
Please login to merge, or discard this patch.