Skip to content

Commit 3e9422b

Browse files
committed
Merge pull request laravel#3315 from taiyaei/fix-spacing
[develop] Fix indent format.
2 parents 1f5681b + 0bbe752 commit 3e9422b

File tree

4 files changed

+21
-24
lines changed

4 files changed

+21
-24
lines changed

app/Providers/AppServiceProvider.php

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,25 @@
22

33
use Illuminate\Support\ServiceProvider;
44

5-
class AppServiceProvider extends ServiceProvider {
6-
7-
/**
8-
* Bootstrap any application services.
9-
*
10-
* @return void
11-
*/
12-
public function boot()
13-
{
14-
//
15-
}
16-
17-
/**
18-
* Register any application services.
19-
*
20-
* @return void
21-
*/
22-
public function register()
23-
{
24-
//
25-
}
5+
class AppServiceProvider extends ServiceProvider
6+
{
7+
/**
8+
* Bootstrap any application services.
9+
*
10+
* @return void
11+
*/
12+
public function boot()
13+
{
14+
//
15+
}
2616

17+
/**
18+
* Register any application services.
19+
*
20+
* @return void
21+
*/
22+
public function register()
23+
{
24+
//
25+
}
2726
}

public/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
$kernel = $app->make('Illuminate\Contracts\Http\Kernel');
5050

5151
$response = $kernel->handle(
52-
$request = Illuminate\Http\Request::capture()
52+
$request = Illuminate\Http\Request::capture()
5353
);
5454

5555
$response->send();

tests/ExampleTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
class ExampleTest extends TestCase
44
{
5-
65
/**
76
* A basic functional test example.
87
*

tests/TestCase.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
class TestCase extends Illuminate\Foundation\Testing\TestCase
44
{
5-
65
/**
76
* Creates the application.
87
*

0 commit comments

Comments
 (0)