Test Failed
Pull Request — master (#39)
by Steen
12:46
created
src/routes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@
 block discarded – undo
10 10
     );
11 11
 });
12 12
 */
13
-Route::group(['middleware' => config('magiclink.middleware')], function () {
13
+Route::group(['middleware' => config('magiclink.middleware')], function() {
14 14
     Route::get(
15
-        config('magiclink.url.validate_path', 'magiclink') . '/{token}',
15
+        config('magiclink.url.validate_path', 'magiclink').'/{token}',
16 16
         'MagicLink\Controllers\MagicLinkController@access'
17 17
     );
18 18
 });
Please login to merge, or discard this patch.
src/MagicLinkServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         }
25 25
 
26 26
         // Views
27
-        $sourceViewsPath = __DIR__ . '/../resources/views';
27
+        $sourceViewsPath = __DIR__.'/../resources/views';
28 28
         $this->loadViewsFrom($sourceViewsPath, 'magiclink');
29 29
         $this->publishes([
30 30
             $sourceViewsPath => resource_path('views/vendor/magiclink'),
Please login to merge, or discard this patch.
migrations/2021_03_06_211907_add_access_code_to_magic_links_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.