@@ -36,15 +36,13 @@ |
||
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 | } |
@@ -2,8 +2,7 @@ discard block |
||
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 |
||
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 |
||
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) { |
@@ -4,8 +4,7 @@ |
||
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 | * |
@@ -2,8 +2,7 @@ |
||
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 | * |
@@ -4,8 +4,7 @@ |
||
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 | * |
@@ -2,8 +2,7 @@ |
||
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 | * |
@@ -2,8 +2,7 @@ |
||
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 | * |
@@ -2,7 +2,6 @@ |
||
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 | } |
@@ -2,8 +2,7 @@ |
||
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 | * |