@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::table('magic_links', function (Blueprint $table) { |
|
16 | + Schema::table('magic_links', function(Blueprint $table) { |
|
17 | 17 | $table->string('access_code')->nullable(); |
18 | 18 | }); |
19 | 19 | } |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | public function down() |
27 | 27 | { |
28 | 28 | if (Schema::hasColumn('magic_links', 'access_code')) { |
29 | - Schema::table('magic_links', function (Blueprint $table) { |
|
29 | + Schema::table('magic_links', function(Blueprint $table) { |
|
30 | 30 | $table->dropColumn('access_code'); |
31 | 31 | }); |
32 | 32 | } |
@@ -10,7 +10,7 @@ |
||
10 | 10 | 'web', |
11 | 11 | ], |
12 | 12 | ], |
13 | - function () { |
|
13 | + function() { |
|
14 | 14 | Route::get( |
15 | 15 | config('magiclink.url.validate_path', 'magiclink').'/{token}', |
16 | 16 | 'MagicLink\Controllers\MagicLinkController@access' |
@@ -17,7 +17,7 @@ |
||
17 | 17 | |
18 | 18 | $magicLink = MagicLink::getValidMagicLinkByToken($token); |
19 | 19 | |
20 | - if (! $magicLink) { |
|
20 | + if ( ! $magicLink) { |
|
21 | 21 | return $this->badResponse(); |
22 | 22 | } |
23 | 23 |