@@ -17,7 +17,7 @@ |
||
17 | 17 | $this->loadViewsFrom(__DIR__.'/../Resources/Views', 'DummyModuleSlug'); |
18 | 18 | |
19 | 19 | $this->loadMigrationsFrom(module_path('DummyModuleSlug', 'Database/Migrations', 'app')); |
20 | - if (!$this->app->configurationIsCached()) { |
|
20 | + if ( ! $this->app->configurationIsCached()) { |
|
21 | 21 | $this->loadConfigsFrom(module_path('DummyModuleSlug', 'Config', 'app')); |
22 | 22 | } |
23 | 23 | } |
@@ -17,7 +17,7 @@ |
||
17 | 17 | $this->loadViewsFrom(__DIR__.'/../Resources/Views', 'notifications'); |
18 | 18 | |
19 | 19 | $this->loadMigrationsFrom(module_path('notifications', 'Database/Migrations', 'app')); |
20 | - if (!$this->app->configurationIsCached()) { |
|
20 | + if ( ! $this->app->configurationIsCached()) { |
|
21 | 21 | $this->loadConfigsFrom(module_path('notifications', 'Config', 'app')); |
22 | 22 | } |
23 | 23 | } |
@@ -17,7 +17,7 @@ |
||
17 | 17 | $this->loadViewsFrom(__DIR__.'/../Resources/Views', 'push-notification-devices'); |
18 | 18 | |
19 | 19 | $this->loadMigrationsFrom(module_path('push-notification-devices', 'Database/Migrations', 'app')); |
20 | - if (!$this->app->configurationIsCached()) { |
|
20 | + if ( ! $this->app->configurationIsCached()) { |
|
21 | 21 | $this->loadConfigsFrom(module_path('push-notification-devices', 'Config', 'app')); |
22 | 22 | } |
23 | 23 | } |
@@ -17,7 +17,7 @@ |
||
17 | 17 | $this->loadViewsFrom(__DIR__.'/../Resources/Views', 'oauth-clients'); |
18 | 18 | |
19 | 19 | $this->loadMigrationsFrom(module_path('oauth-clients', 'Database/Migrations', 'app')); |
20 | - if (!$this->app->configurationIsCached()) { |
|
20 | + if ( ! $this->app->configurationIsCached()) { |
|
21 | 21 | $this->loadConfigsFrom(module_path('oauth-clients', 'Config', 'app')); |
22 | 22 | } |
23 | 23 | } |
@@ -30,7 +30,7 @@ |
||
30 | 30 | */ |
31 | 31 | public function up() |
32 | 32 | { |
33 | - $this->schema->create('oauth_personal_access_clients', function (Blueprint $table) { |
|
33 | + $this->schema->create('oauth_personal_access_clients', function(Blueprint $table) { |
|
34 | 34 | $table->bigIncrements('id'); |
35 | 35 | $table->unsignedBigInteger('client_id'); |
36 | 36 | $table->timestamps(); |
@@ -30,7 +30,7 @@ |
||
30 | 30 | */ |
31 | 31 | public function up() |
32 | 32 | { |
33 | - $this->schema->create('oauth_refresh_tokens', function (Blueprint $table) { |
|
33 | + $this->schema->create('oauth_refresh_tokens', function(Blueprint $table) { |
|
34 | 34 | $table->string('id', 100)->primary(); |
35 | 35 | $table->string('access_token_id', 100)->index(); |
36 | 36 | $table->boolean('revoked'); |
@@ -40,7 +40,7 @@ |
||
40 | 40 | */ |
41 | 41 | public function up() |
42 | 42 | { |
43 | - $this->schema->create('oauth_clients', function (Blueprint $table) { |
|
43 | + $this->schema->create('oauth_clients', function(Blueprint $table) { |
|
44 | 44 | $table->bigIncrements('id'); |
45 | 45 | $table->unsignedBigInteger('user_id')->nullable()->index(); |
46 | 46 | $table->string('name'); |
@@ -30,7 +30,7 @@ |
||
30 | 30 | */ |
31 | 31 | public function up() |
32 | 32 | { |
33 | - $this->schema->create('oauth_access_tokens', function (Blueprint $table) { |
|
33 | + $this->schema->create('oauth_access_tokens', function(Blueprint $table) { |
|
34 | 34 | $table->string('id', 100)->primary(); |
35 | 35 | $table->unsignedBigInteger('user_id')->nullable()->index(); |
36 | 36 | $table->unsignedBigInteger('client_id'); |
@@ -30,7 +30,7 @@ |
||
30 | 30 | */ |
31 | 31 | public function up() |
32 | 32 | { |
33 | - $this->schema->create('oauth_auth_codes', function (Blueprint $table) { |
|
33 | + $this->schema->create('oauth_auth_codes', function(Blueprint $table) { |
|
34 | 34 | $table->string('id', 100)->primary(); |
35 | 35 | $table->unsignedBigInteger('user_id')->index(); |
36 | 36 | $table->unsignedBigInteger('client_id'); |