Completed
Push — master ( 91df31...876b8b )
by Sherif
01:12
created
Core/Console/Commands/Stubs/Module/Providers/ModuleServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Modules/Notifications/Providers/ModuleServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Modules/PushNotificationDevices/Providers/ModuleServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Modules/OauthClients/Providers/ModuleServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
Migrations/2016_06_01_000005_create_oauth_personal_access_clients_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
Database/Migrations/2016_06_01_000003_create_oauth_refresh_tokens_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
Database/Migrations/2016_06_01_000004_create_oauth_clients_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
Database/Migrations/2016_06_01_000002_create_oauth_access_tokens_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
Database/Migrations/2016_06_01_000001_create_oauth_auth_codes_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.