Completed
Pull Request — develop (#1810)
by Zack
20:16
created
vendor/illuminate/support/Traits/CapsuleManagerTrait.php 3 patches
Indentation   +53 added lines, -53 removed lines patch added patch discarded remove patch
@@ -7,63 +7,63 @@
 block discarded – undo
7 7
 
8 8
 trait CapsuleManagerTrait
9 9
 {
10
-    /**
11
-     * The current globally used instance.
12
-     *
13
-     * @var object
14
-     */
15
-    protected static $instance;
10
+	/**
11
+	 * The current globally used instance.
12
+	 *
13
+	 * @var object
14
+	 */
15
+	protected static $instance;
16 16
 
17
-    /**
18
-     * The container instance.
19
-     *
20
-     * @var \Illuminate\Contracts\Container\Container
21
-     */
22
-    protected $container;
17
+	/**
18
+	 * The container instance.
19
+	 *
20
+	 * @var \Illuminate\Contracts\Container\Container
21
+	 */
22
+	protected $container;
23 23
 
24
-    /**
25
-     * Setup the IoC container instance.
26
-     *
27
-     * @param  \Illuminate\Contracts\Container\Container  $container
28
-     * @return void
29
-     */
30
-    protected function setupContainer(Container $container)
31
-    {
32
-        $this->container = $container;
24
+	/**
25
+	 * Setup the IoC container instance.
26
+	 *
27
+	 * @param  \Illuminate\Contracts\Container\Container  $container
28
+	 * @return void
29
+	 */
30
+	protected function setupContainer(Container $container)
31
+	{
32
+		$this->container = $container;
33 33
 
34
-        if (! $this->container->bound('config')) {
35
-            $this->container->instance('config', new Fluent);
36
-        }
37
-    }
34
+		if (! $this->container->bound('config')) {
35
+			$this->container->instance('config', new Fluent);
36
+		}
37
+	}
38 38
 
39
-    /**
40
-     * Make this capsule instance available globally.
41
-     *
42
-     * @return void
43
-     */
44
-    public function setAsGlobal()
45
-    {
46
-        static::$instance = $this;
47
-    }
39
+	/**
40
+	 * Make this capsule instance available globally.
41
+	 *
42
+	 * @return void
43
+	 */
44
+	public function setAsGlobal()
45
+	{
46
+		static::$instance = $this;
47
+	}
48 48
 
49
-    /**
50
-     * Get the IoC container instance.
51
-     *
52
-     * @return \Illuminate\Contracts\Container\Container
53
-     */
54
-    public function getContainer()
55
-    {
56
-        return $this->container;
57
-    }
49
+	/**
50
+	 * Get the IoC container instance.
51
+	 *
52
+	 * @return \Illuminate\Contracts\Container\Container
53
+	 */
54
+	public function getContainer()
55
+	{
56
+		return $this->container;
57
+	}
58 58
 
59
-    /**
60
-     * Set the IoC container instance.
61
-     *
62
-     * @param  \Illuminate\Contracts\Container\Container  $container
63
-     * @return void
64
-     */
65
-    public function setContainer(Container $container)
66
-    {
67
-        $this->container = $container;
68
-    }
59
+	/**
60
+	 * Set the IoC container instance.
61
+	 *
62
+	 * @param  \Illuminate\Contracts\Container\Container  $container
63
+	 * @return void
64
+	 */
65
+	public function setContainer(Container $container)
66
+	{
67
+		$this->container = $container;
68
+	}
69 69
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,12 +27,12 @@  discard block
 block discarded – undo
27 27
      * @param  \Illuminate\Contracts\Container\Container  $container
28 28
      * @return void
29 29
      */
30
-    protected function setupContainer(Container $container)
30
+    protected function setupContainer( Container $container )
31 31
     {
32 32
         $this->container = $container;
33 33
 
34
-        if (! $this->container->bound('config')) {
35
-            $this->container->instance('config', new Fluent);
34
+        if ( ! $this->container->bound( 'config' ) ) {
35
+            $this->container->instance( 'config', new Fluent );
36 36
         }
37 37
     }
38 38
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      * @param  \Illuminate\Contracts\Container\Container  $container
63 63
      * @return void
64 64
      */
65
-    public function setContainer(Container $container)
65
+    public function setContainer( Container $container )
66 66
     {
67 67
         $this->container = $container;
68 68
     }
Please login to merge, or discard this patch.
Braces   +5 added lines, -10 removed lines patch added patch discarded remove patch
@@ -5,8 +5,7 @@  discard block
 block discarded – undo
5 5
 use Illuminate\Support\Fluent;
6 6
 use Illuminate\Contracts\Container\Container;
7 7
 
8
-trait CapsuleManagerTrait
9
-{
8
+trait CapsuleManagerTrait {
10 9
     /**
11 10
      * The current globally used instance.
12 11
      *
@@ -27,8 +26,7 @@  discard block
 block discarded – undo
27 26
      * @param  \Illuminate\Contracts\Container\Container  $container
28 27
      * @return void
29 28
      */
30
-    protected function setupContainer(Container $container)
31
-    {
29
+    protected function setupContainer(Container $container) {
32 30
         $this->container = $container;
33 31
 
34 32
         if (! $this->container->bound('config')) {
@@ -41,8 +39,7 @@  discard block
 block discarded – undo
41 39
      *
42 40
      * @return void
43 41
      */
44
-    public function setAsGlobal()
45
-    {
42
+    public function setAsGlobal() {
46 43
         static::$instance = $this;
47 44
     }
48 45
 
@@ -51,8 +48,7 @@  discard block
 block discarded – undo
51 48
      *
52 49
      * @return \Illuminate\Contracts\Container\Container
53 50
      */
54
-    public function getContainer()
55
-    {
51
+    public function getContainer() {
56 52
         return $this->container;
57 53
     }
58 54
 
@@ -62,8 +58,7 @@  discard block
 block discarded – undo
62 58
      * @param  \Illuminate\Contracts\Container\Container  $container
63 59
      * @return void
64 60
      */
65
-    public function setContainer(Container $container)
66
-    {
61
+    public function setContainer(Container $container) {
67 62
         $this->container = $container;
68 63
     }
69 64
 }
Please login to merge, or discard this patch.
vendor/illuminate/support/AggregateServiceProvider.php 3 patches
Indentation   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -4,49 +4,49 @@
 block discarded – undo
4 4
 
5 5
 class AggregateServiceProvider extends ServiceProvider
6 6
 {
7
-    /**
8
-     * The provider class names.
9
-     *
10
-     * @var array
11
-     */
12
-    protected $providers = [];
13
-
14
-    /**
15
-     * An array of the service provider instances.
16
-     *
17
-     * @var array
18
-     */
19
-    protected $instances = [];
20
-
21
-    /**
22
-     * Register the service provider.
23
-     *
24
-     * @return void
25
-     */
26
-    public function register()
27
-    {
28
-        $this->instances = [];
29
-
30
-        foreach ($this->providers as $provider) {
31
-            $this->instances[] = $this->app->register($provider);
32
-        }
33
-    }
34
-
35
-    /**
36
-     * Get the services provided by the provider.
37
-     *
38
-     * @return array
39
-     */
40
-    public function provides()
41
-    {
42
-        $provides = [];
43
-
44
-        foreach ($this->providers as $provider) {
45
-            $instance = $this->app->resolveProvider($provider);
46
-
47
-            $provides = array_merge($provides, $instance->provides());
48
-        }
49
-
50
-        return $provides;
51
-    }
7
+	/**
8
+	 * The provider class names.
9
+	 *
10
+	 * @var array
11
+	 */
12
+	protected $providers = [];
13
+
14
+	/**
15
+	 * An array of the service provider instances.
16
+	 *
17
+	 * @var array
18
+	 */
19
+	protected $instances = [];
20
+
21
+	/**
22
+	 * Register the service provider.
23
+	 *
24
+	 * @return void
25
+	 */
26
+	public function register()
27
+	{
28
+		$this->instances = [];
29
+
30
+		foreach ($this->providers as $provider) {
31
+			$this->instances[] = $this->app->register($provider);
32
+		}
33
+	}
34
+
35
+	/**
36
+	 * Get the services provided by the provider.
37
+	 *
38
+	 * @return array
39
+	 */
40
+	public function provides()
41
+	{
42
+		$provides = [];
43
+
44
+		foreach ($this->providers as $provider) {
45
+			$instance = $this->app->resolveProvider($provider);
46
+
47
+			$provides = array_merge($provides, $instance->provides());
48
+		}
49
+
50
+		return $provides;
51
+	}
52 52
 }
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -9,14 +9,14 @@  discard block
 block discarded – undo
9 9
      *
10 10
      * @var array
11 11
      */
12
-    protected $providers = [];
12
+    protected $providers = [ ];
13 13
 
14 14
     /**
15 15
      * An array of the service provider instances.
16 16
      *
17 17
      * @var array
18 18
      */
19
-    protected $instances = [];
19
+    protected $instances = [ ];
20 20
 
21 21
     /**
22 22
      * Register the service provider.
@@ -25,10 +25,10 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function register()
27 27
     {
28
-        $this->instances = [];
28
+        $this->instances = [ ];
29 29
 
30
-        foreach ($this->providers as $provider) {
31
-            $this->instances[] = $this->app->register($provider);
30
+        foreach ( $this->providers as $provider ) {
31
+            $this->instances[ ] = $this->app->register( $provider );
32 32
         }
33 33
     }
34 34
 
@@ -39,12 +39,12 @@  discard block
 block discarded – undo
39 39
      */
40 40
     public function provides()
41 41
     {
42
-        $provides = [];
42
+        $provides = [ ];
43 43
 
44
-        foreach ($this->providers as $provider) {
45
-            $instance = $this->app->resolveProvider($provider);
44
+        foreach ( $this->providers as $provider ) {
45
+            $instance = $this->app->resolveProvider( $provider );
46 46
 
47
-            $provides = array_merge($provides, $instance->provides());
47
+            $provides = array_merge( $provides, $instance->provides() );
48 48
         }
49 49
 
50 50
         return $provides;
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,8 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Support;
4 4
 
5
-class AggregateServiceProvider extends ServiceProvider
6
-{
5
+class AggregateServiceProvider extends ServiceProvider {
7 6
     /**
8 7
      * The provider class names.
9 8
      *
@@ -23,8 +22,7 @@  discard block
 block discarded – undo
23 22
      *
24 23
      * @return void
25 24
      */
26
-    public function register()
27
-    {
25
+    public function register() {
28 26
         $this->instances = [];
29 27
 
30 28
         foreach ($this->providers as $provider) {
@@ -37,8 +35,7 @@  discard block
 block discarded – undo
37 35
      *
38 36
      * @return array
39 37
      */
40
-    public function provides()
41
-    {
38
+    public function provides() {
42 39
         $provides = [];
43 40
 
44 41
         foreach ($this->providers as $provider) {
Please login to merge, or discard this patch.
vendor/illuminate/contracts/View/View.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\Support\Renderable;
6 6
 
7
-interface View extends Renderable
8
-{
7
+interface View extends Renderable {
9 8
     /**
10 9
      * Get the name of the view.
11 10
      *
Please login to merge, or discard this patch.
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -12,19 +12,19 @@
 block discarded – undo
12 12
 
13 13
 interface View extends Renderable
14 14
 {
15
-    /**
16
-     * Get the name of the view.
17
-     *
18
-     * @return string
19
-     */
20
-    public function name();
15
+	/**
16
+	 * Get the name of the view.
17
+	 *
18
+	 * @return string
19
+	 */
20
+	public function name();
21 21
 
22
-    /**
23
-     * Add a piece of data to the view.
24
-     *
25
-     * @param  string|array  $key
26
-     * @param  mixed   $value
27
-     * @return $this
28
-     */
29
-    public function with($key, $value = null);
22
+	/**
23
+	 * Add a piece of data to the view.
24
+	 *
25
+	 * @param  string|array  $key
26
+	 * @param  mixed   $value
27
+	 * @return $this
28
+	 */
29
+	public function with($key, $value = null);
30 30
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,5 +26,5 @@
 block discarded – undo
26 26
      * @param  mixed   $value
27 27
      * @return $this
28 28
      */
29
-    public function with($key, $value = null);
29
+    public function with( $key, $value = null );
30 30
 }
Please login to merge, or discard this patch.
vendor/illuminate/contracts/View/Factory.php 3 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
      * @param  string  $view
11 11
      * @return bool
12 12
      */
13
-    public function exists($view);
13
+    public function exists( $view );
14 14
 
15 15
     /**
16 16
      * Get the evaluated view contents for the given path.
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
      * @param  array  $mergeData
21 21
      * @return \Illuminate\Contracts\View\View
22 22
      */
23
-    public function file($path, $data = [], $mergeData = []);
23
+    public function file( $path, $data = [ ], $mergeData = [ ] );
24 24
 
25 25
     /**
26 26
      * Get the evaluated view contents for the given view.
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      * @param  array  $mergeData
31 31
      * @return \Illuminate\Contracts\View\View
32 32
      */
33
-    public function make($view, $data = [], $mergeData = []);
33
+    public function make( $view, $data = [ ], $mergeData = [ ] );
34 34
 
35 35
     /**
36 36
      * Add a piece of shared data to the environment.
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      * @param  mixed  $value
40 40
      * @return mixed
41 41
      */
42
-    public function share($key, $value = null);
42
+    public function share( $key, $value = null );
43 43
 
44 44
     /**
45 45
      * Register a view composer event.
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      * @param  \Closure|string  $callback
49 49
      * @return array
50 50
      */
51
-    public function composer($views, $callback);
51
+    public function composer( $views, $callback );
52 52
 
53 53
     /**
54 54
      * Register a view creator event.
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      * @param  \Closure|string  $callback
58 58
      * @return array
59 59
      */
60
-    public function creator($views, $callback);
60
+    public function creator( $views, $callback );
61 61
 
62 62
     /**
63 63
      * Add a new namespace to the loader.
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      * @param  string|array  $hints
67 67
      * @return $this
68 68
      */
69
-    public function addNamespace($namespace, $hints);
69
+    public function addNamespace( $namespace, $hints );
70 70
 
71 71
     /**
72 72
      * Replace the namespace hints for the given namespace.
@@ -75,5 +75,5 @@  discard block
 block discarded – undo
75 75
      * @param  string|array  $hints
76 76
      * @return $this
77 77
      */
78
-    public function replaceNamespace($namespace, $hints);
78
+    public function replaceNamespace( $namespace, $hints );
79 79
 }
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\View;
4 4
 
5
-interface Factory
6
-{
5
+interface Factory {
7 6
     /**
8 7
      * Determine if a given view exists.
9 8
      *
Please login to merge, or discard this patch.
Indentation   +65 added lines, -65 removed lines patch added patch discarded remove patch
@@ -4,76 +4,76 @@
 block discarded – undo
4 4
 
5 5
 interface Factory
6 6
 {
7
-    /**
8
-     * Determine if a given view exists.
9
-     *
10
-     * @param  string  $view
11
-     * @return bool
12
-     */
13
-    public function exists($view);
7
+	/**
8
+	 * Determine if a given view exists.
9
+	 *
10
+	 * @param  string  $view
11
+	 * @return bool
12
+	 */
13
+	public function exists($view);
14 14
 
15
-    /**
16
-     * Get the evaluated view contents for the given path.
17
-     *
18
-     * @param  string  $path
19
-     * @param  array  $data
20
-     * @param  array  $mergeData
21
-     * @return \Illuminate\Contracts\View\View
22
-     */
23
-    public function file($path, $data = [], $mergeData = []);
15
+	/**
16
+	 * Get the evaluated view contents for the given path.
17
+	 *
18
+	 * @param  string  $path
19
+	 * @param  array  $data
20
+	 * @param  array  $mergeData
21
+	 * @return \Illuminate\Contracts\View\View
22
+	 */
23
+	public function file($path, $data = [], $mergeData = []);
24 24
 
25
-    /**
26
-     * Get the evaluated view contents for the given view.
27
-     *
28
-     * @param  string  $view
29
-     * @param  array  $data
30
-     * @param  array  $mergeData
31
-     * @return \Illuminate\Contracts\View\View
32
-     */
33
-    public function make($view, $data = [], $mergeData = []);
25
+	/**
26
+	 * Get the evaluated view contents for the given view.
27
+	 *
28
+	 * @param  string  $view
29
+	 * @param  array  $data
30
+	 * @param  array  $mergeData
31
+	 * @return \Illuminate\Contracts\View\View
32
+	 */
33
+	public function make($view, $data = [], $mergeData = []);
34 34
 
35
-    /**
36
-     * Add a piece of shared data to the environment.
37
-     *
38
-     * @param  array|string  $key
39
-     * @param  mixed  $value
40
-     * @return mixed
41
-     */
42
-    public function share($key, $value = null);
35
+	/**
36
+	 * Add a piece of shared data to the environment.
37
+	 *
38
+	 * @param  array|string  $key
39
+	 * @param  mixed  $value
40
+	 * @return mixed
41
+	 */
42
+	public function share($key, $value = null);
43 43
 
44
-    /**
45
-     * Register a view composer event.
46
-     *
47
-     * @param  array|string  $views
48
-     * @param  \Closure|string  $callback
49
-     * @return array
50
-     */
51
-    public function composer($views, $callback);
44
+	/**
45
+	 * Register a view composer event.
46
+	 *
47
+	 * @param  array|string  $views
48
+	 * @param  \Closure|string  $callback
49
+	 * @return array
50
+	 */
51
+	public function composer($views, $callback);
52 52
 
53
-    /**
54
-     * Register a view creator event.
55
-     *
56
-     * @param  array|string  $views
57
-     * @param  \Closure|string  $callback
58
-     * @return array
59
-     */
60
-    public function creator($views, $callback);
53
+	/**
54
+	 * Register a view creator event.
55
+	 *
56
+	 * @param  array|string  $views
57
+	 * @param  \Closure|string  $callback
58
+	 * @return array
59
+	 */
60
+	public function creator($views, $callback);
61 61
 
62
-    /**
63
-     * Add a new namespace to the loader.
64
-     *
65
-     * @param  string  $namespace
66
-     * @param  string|array  $hints
67
-     * @return $this
68
-     */
69
-    public function addNamespace($namespace, $hints);
62
+	/**
63
+	 * Add a new namespace to the loader.
64
+	 *
65
+	 * @param  string  $namespace
66
+	 * @param  string|array  $hints
67
+	 * @return $this
68
+	 */
69
+	public function addNamespace($namespace, $hints);
70 70
 
71
-    /**
72
-     * Replace the namespace hints for the given namespace.
73
-     *
74
-     * @param  string  $namespace
75
-     * @param  string|array  $hints
76
-     * @return $this
77
-     */
78
-    public function replaceNamespace($namespace, $hints);
71
+	/**
72
+	 * Replace the namespace hints for the given namespace.
73
+	 *
74
+	 * @param  string  $namespace
75
+	 * @param  string|array  $hints
76
+	 * @return $this
77
+	 */
78
+	public function replaceNamespace($namespace, $hints);
79 79
 }
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Pipeline/Pipeline.php 3 patches
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -6,35 +6,35 @@
 block discarded – undo
6 6
 
7 7
 interface Pipeline
8 8
 {
9
-    /**
10
-     * Set the traveler object being sent on the pipeline.
11
-     *
12
-     * @param  mixed  $traveler
13
-     * @return $this
14
-     */
15
-    public function send($traveler);
9
+	/**
10
+	 * Set the traveler object being sent on the pipeline.
11
+	 *
12
+	 * @param  mixed  $traveler
13
+	 * @return $this
14
+	 */
15
+	public function send($traveler);
16 16
 
17
-    /**
18
-     * Set the stops of the pipeline.
19
-     *
20
-     * @param  dynamic|array  $stops
21
-     * @return $this
22
-     */
23
-    public function through($stops);
17
+	/**
18
+	 * Set the stops of the pipeline.
19
+	 *
20
+	 * @param  dynamic|array  $stops
21
+	 * @return $this
22
+	 */
23
+	public function through($stops);
24 24
 
25
-    /**
26
-     * Set the method to call on the stops.
27
-     *
28
-     * @param  string  $method
29
-     * @return $this
30
-     */
31
-    public function via($method);
25
+	/**
26
+	 * Set the method to call on the stops.
27
+	 *
28
+	 * @param  string  $method
29
+	 * @return $this
30
+	 */
31
+	public function via($method);
32 32
 
33
-    /**
34
-     * Run the pipeline with a final destination callback.
35
-     *
36
-     * @param  \Closure  $destination
37
-     * @return mixed
38
-     */
39
-    public function then(Closure $destination);
33
+	/**
34
+	 * Run the pipeline with a final destination callback.
35
+	 *
36
+	 * @param  \Closure  $destination
37
+	 * @return mixed
38
+	 */
39
+	public function then(Closure $destination);
40 40
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      * @param  mixed  $traveler
13 13
      * @return $this
14 14
      */
15
-    public function send($traveler);
15
+    public function send( $traveler );
16 16
 
17 17
     /**
18 18
      * Set the stops of the pipeline.
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
      * @param  dynamic|array  $stops
21 21
      * @return $this
22 22
      */
23
-    public function through($stops);
23
+    public function through( $stops );
24 24
 
25 25
     /**
26 26
      * Set the method to call on the stops.
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      * @param  string  $method
29 29
      * @return $this
30 30
      */
31
-    public function via($method);
31
+    public function via( $method );
32 32
 
33 33
     /**
34 34
      * Run the pipeline with a final destination callback.
@@ -36,5 +36,5 @@  discard block
 block discarded – undo
36 36
      * @param  \Closure  $destination
37 37
      * @return mixed
38 38
      */
39
-    public function then(Closure $destination);
39
+    public function then( Closure $destination );
40 40
 }
Please login to merge, or discard this patch.
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 Closure;
6 6
 
7
-interface Pipeline
8
-{
7
+interface Pipeline {
9 8
     /**
10 9
      * Set the traveler object being sent on the pipeline.
11 10
      *
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Pipeline/Hub.php 3 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@
 block discarded – undo
4 4
 
5 5
 interface Hub
6 6
 {
7
-    /**
8
-     * Send an object through one of the available pipelines.
9
-     *
10
-     * @param  mixed  $object
11
-     * @param  string|null  $pipeline
12
-     * @return mixed
13
-     */
14
-    public function pipe($object, $pipeline = null);
7
+	/**
8
+	 * Send an object through one of the available pipelines.
9
+	 *
10
+	 * @param  mixed  $object
11
+	 * @param  string|null  $pipeline
12
+	 * @return mixed
13
+	 */
14
+	public function pipe($object, $pipeline = null);
15 15
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,5 +11,5 @@
 block discarded – undo
11 11
      * @param  string|null  $pipeline
12 12
      * @return mixed
13 13
      */
14
-    public function pipe($object, $pipeline = null);
14
+    public function pipe( $object, $pipeline = null );
15 15
 }
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\Pipeline;
4 4
 
5
-interface Hub
6
-{
5
+interface Hub {
7 6
     /**
8 7
      * Send an object through one of the available pipelines.
9 8
      *
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Broadcasting/ShouldBroadcast.php 2 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\Broadcasting;
4 4
 
5
-interface ShouldBroadcast
6
-{
5
+interface ShouldBroadcast {
7 6
     /**
8 7
      * Get the channels the event should broadcast on.
9 8
      *
Please login to merge, or discard this patch.
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -10,10 +10,10 @@
 block discarded – undo
10 10
 
11 11
 interface ShouldBroadcast
12 12
 {
13
-    /**
14
-     * Get the channels the event should broadcast on.
15
-     *
16
-     * @return array
17
-     */
18
-    public function broadcastOn();
13
+	/**
14
+	 * Get the channels the event should broadcast on.
15
+	 *
16
+	 * @return array
17
+	 */
18
+	public function broadcastOn();
19 19
 }
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Broadcasting/ShouldBroadcastNow.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,5 +4,5 @@
 block discarded – undo
4 4
 
5 5
 interface ShouldBroadcastNow extends ShouldBroadcast
6 6
 {
7
-    //
7
+	//
8 8
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Contracts\Broadcasting;
4 4
 
5
-interface ShouldBroadcastNow extends ShouldBroadcast
6
-{
5
+interface ShouldBroadcastNow extends ShouldBroadcast {
7 6
     //
8 7
 }
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Broadcasting/Broadcaster.php 3 patches
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -4,30 +4,30 @@
 block discarded – undo
4 4
 
5 5
 interface Broadcaster
6 6
 {
7
-    /**
8
-     * Authenticate the incoming request for a given channel.
9
-     *
10
-     * @param  \Illuminate\Http\Request  $request
11
-     * @return mixed
12
-     */
13
-    public function auth($request);
7
+	/**
8
+	 * Authenticate the incoming request for a given channel.
9
+	 *
10
+	 * @param  \Illuminate\Http\Request  $request
11
+	 * @return mixed
12
+	 */
13
+	public function auth($request);
14 14
 
15
-    /**
16
-     * Return the valid authentication response.
17
-     *
18
-     * @param  \Illuminate\Http\Request  $request
19
-     * @param  mixed  $result
20
-     * @return mixed
21
-     */
22
-    public function validAuthenticationResponse($request, $result);
15
+	/**
16
+	 * Return the valid authentication response.
17
+	 *
18
+	 * @param  \Illuminate\Http\Request  $request
19
+	 * @param  mixed  $result
20
+	 * @return mixed
21
+	 */
22
+	public function validAuthenticationResponse($request, $result);
23 23
 
24
-    /**
25
-     * Broadcast the given event.
26
-     *
27
-     * @param  array  $channels
28
-     * @param  string  $event
29
-     * @param  array  $payload
30
-     * @return void
31
-     */
32
-    public function broadcast(array $channels, $event, array $payload = []);
24
+	/**
25
+	 * Broadcast the given event.
26
+	 *
27
+	 * @param  array  $channels
28
+	 * @param  string  $event
29
+	 * @param  array  $payload
30
+	 * @return void
31
+	 */
32
+	public function broadcast(array $channels, $event, array $payload = []);
33 33
 }
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  \Illuminate\Http\Request  $request
11 11
      * @return mixed
12 12
      */
13
-    public function auth($request);
13
+    public function auth( $request );
14 14
 
15 15
     /**
16 16
      * Return the valid authentication response.
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      * @param  mixed  $result
20 20
      * @return mixed
21 21
      */
22
-    public function validAuthenticationResponse($request, $result);
22
+    public function validAuthenticationResponse( $request, $result );
23 23
 
24 24
     /**
25 25
      * Broadcast the given event.
@@ -29,5 +29,5 @@  discard block
 block discarded – undo
29 29
      * @param  array  $payload
30 30
      * @return void
31 31
      */
32
-    public function broadcast(array $channels, $event, array $payload = []);
32
+    public function broadcast( array $channels, $event, array $payload = [ ] );
33 33
 }
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\Broadcasting;
4 4
 
5
-interface Broadcaster
6
-{
5
+interface Broadcaster {
7 6
     /**
8 7
      * Authenticate the incoming request for a given channel.
9 8
      *
Please login to merge, or discard this patch.