Completed
Pull Request — develop (#1823)
by
unknown
20:08
created
vendor/illuminate/support/Facades/DB.php 1 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/AggregateServiceProvider.php 1 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 1 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 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.
vendor/illuminate/contracts/View/Factory.php 1 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.
vendor/illuminate/contracts/Pipeline/Pipeline.php 1 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 1 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 1 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 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.
vendor/illuminate/contracts/Broadcasting/ShouldBroadcastNow.php 1 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 1 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.