Fix more spacing.

This converts AppServiceProvider to spaces since it wasn't and removes
a few empty lines after class declarations.
This commit is contained in:
Austin H
2015-03-20 20:30:50 -07:00
parent 1f5681b398
commit 0bbe752e87
4 changed files with 21 additions and 24 deletions

View File

@@ -2,26 +2,25 @@
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider {
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
}