Commit 0bbe752e authored by Austin H's avatar Austin H

Fix more spacing.

This converts AppServiceProvider to spaces since it wasn't and removes
a few empty lines after class declarations.
parent 1f5681b3
......@@ -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()
{
//
}
}
......@@ -49,7 +49,7 @@ $app = require_once __DIR__.'/../bootstrap/app.php';
$kernel = $app->make('Illuminate\Contracts\Http\Kernel');
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
$request = Illuminate\Http\Request::capture()
);
$response->send();
......
......@@ -2,7 +2,6 @@
class ExampleTest extends TestCase
{
/**
* A basic functional test example.
*
......
......@@ -2,7 +2,6 @@
class TestCase extends Illuminate\Foundation\Testing\TestCase
{
/**
* Creates the application.
*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment