Completed
Branch master (317386)
by Jeroen
02:16
created
database/migrations/guestpass_0_0_1_create_guestpasses_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('guestpasses', function (Blueprint $table) {
16
+        Schema::create('guestpasses', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('key', 10)->unique();
19 19
             $table->string('owner_model');
Please login to merge, or discard this patch.
src/GuestPassServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      */
28 28
     public function register()
29 29
     {
30
-        $this->app->singleton('guestpass', function ($app) {
30
+        $this->app->singleton('guestpass', function($app) {
31 31
             return new GuestPassService;
32 32
         });
33 33
     }
Please login to merge, or discard this patch.