@@ -32,7 +32,7 @@ |
||
32 | 32 | * |
33 | 33 | * @return void |
34 | 34 | */ |
35 | - public function __construct() |
|
35 | + public function __construct () |
|
36 | 36 | { |
37 | 37 | $this->middleware('guest')->except('logout'); |
38 | 38 | } |
@@ -16,7 +16,7 @@ |
||
16 | 16 | * |
17 | 17 | * @return mixed |
18 | 18 | */ |
19 | - public function handle($request, Closure $next, $guard = null) |
|
19 | + public function handle ($request, Closure $next, $guard = null) |
|
20 | 20 | { |
21 | 21 | if (Auth::guard($guard)->check()) { |
22 | 22 | return redirect('/home'); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | * |
24 | 24 | * @return void |
25 | 25 | */ |
26 | - protected function schedule(Schedule $schedule) |
|
26 | + protected function schedule (Schedule $schedule) |
|
27 | 27 | { |
28 | 28 | // $schedule->command('inspire') |
29 | 29 | // ->hourly(); |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | * |
35 | 35 | * @return void |
36 | 36 | */ |
37 | - protected function commands() |
|
37 | + protected function commands () |
|
38 | 38 | { |
39 | 39 | $this->load(__DIR__.'/Commands'); |
40 | 40 |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | * |
36 | 36 | * @return void |
37 | 37 | */ |
38 | - public function report(Exception $exception) |
|
38 | + public function report (Exception $exception) |
|
39 | 39 | { |
40 | 40 | parent::report($exception); |
41 | 41 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * |
49 | 49 | * @return \Illuminate\Http\Response |
50 | 50 | */ |
51 | - public function render($request, Exception $exception) |
|
51 | + public function render ($request, Exception $exception) |
|
52 | 52 | { |
53 | 53 | return parent::render($request, $exception); |
54 | 54 | } |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | * |
12 | 12 | * @return void |
13 | 13 | */ |
14 | - public function up() |
|
14 | + public function up () |
|
15 | 15 | { |
16 | 16 | Schema::create('password_resets', function (Blueprint $table) { |
17 | 17 | $table->string('email')->index(); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * |
26 | 26 | * @return void |
27 | 27 | */ |
28 | - public function down() |
|
28 | + public function down () |
|
29 | 29 | { |
30 | 30 | Schema::dropIfExists('password_resets'); |
31 | 31 | } |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | * |
12 | 12 | * @return void |
13 | 13 | */ |
14 | - public function up() |
|
14 | + public function up () |
|
15 | 15 | { |
16 | 16 | Schema::create('users', function (Blueprint $table) { |
17 | 17 | $table->increments('id'); |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | * |
29 | 29 | * @return void |
30 | 30 | */ |
31 | - public function down() |
|
31 | + public function down () |
|
32 | 32 | { |
33 | 33 | Schema::dropIfExists('users'); |
34 | 34 | } |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * |
10 | 10 | * @return void |
11 | 11 | */ |
12 | - public function run() |
|
12 | + public function run () |
|
13 | 13 | { |
14 | 14 | // $this->call(UsersTableSeeder::class); |
15 | 15 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | * |
33 | 33 | * @return void |
34 | 34 | */ |
35 | - public function __construct() |
|
35 | + public function __construct () |
|
36 | 36 | { |
37 | 37 | $this->middleware('guest'); |
38 | 38 | } |
@@ -4,7 +4,7 @@ |
||
4 | 4 | * @return an instance of the EntityManager |
5 | 5 | */ |
6 | 6 | if (!function_exists('em')) { |
7 | - function em() |
|
7 | + function em () |
|
8 | 8 | { |
9 | 9 | return app('Doctrine\ORM\EntityManagerInterface'); |
10 | 10 | } |