Passed
Push — master ( 6160a4...8e4138 )
by Faith
15:58 queued 13:09
created
database/migrations/2019_09_04_135046_create_ministries_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('ministries', function (Blueprint $table) {
16
+        Schema::create('ministries', function(Blueprint $table) {
17 17
             $table->string('id', 150)->primary();
18 18
             $table->string('name');
19 19
             $table->string('email', 150)->unique();
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
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('oauth_access_tokens', function (Blueprint $table) {
16
+        Schema::create('oauth_access_tokens', function(Blueprint $table) {
17 17
             $table->string('id', 100)->primary();
18 18
             $table->string('user_id', 150)->index()->nullable();
19 19
             $table->unsignedInteger('client_id');
Please login to merge, or discard this patch.
database/migrations/2019_09_04_201959_create_images_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('images', function (Blueprint $table) {
16
+        Schema::create('images', function(Blueprint $table) {
17 17
             $table->string('id', 150);
18 18
             $table->string('imageable_id', 150)->index();
19 19
             $table->string('imageable_type');
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
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('oauth_auth_codes', function (Blueprint $table) {
16
+        Schema::create('oauth_auth_codes', function(Blueprint $table) {
17 17
             $table->string('id', 100)->primary();
18 18
             $table->string('user_id', 150);
19 19
             $table->unsignedInteger('client_id');
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
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('oauth_personal_access_clients', function (Blueprint $table) {
16
+        Schema::create('oauth_personal_access_clients', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->unsignedInteger('client_id')->index();
19 19
             $table->timestamps();
Please login to merge, or discard this patch.
database/migrations/2019_09_04_142322_create_accounts_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('accounts', function (Blueprint $table) {
16
+        Schema::create('accounts', function(Blueprint $table) {
17 17
             $table->string('id', 150)->primary();
18 18
             $table->string('ministry_id', 150)->index();
19
-            $table->enum('level', ['Free', 'Premium', 'PremiumPlus'])->default('Free');
19
+            $table->enum('level', [ 'Free', 'Premium', 'PremiumPlus' ])->default('Free');
20 20
             $table->dateTime('expiry_date')->default(now());
21 21
             $table->timestamps();
22 22
 
Please login to merge, or discard this patch.
database/migrations/2019_09_04_203237_create_comments_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('comments', function (Blueprint $table) {
16
+        Schema::create('comments', function(Blueprint $table) {
17 17
             $table->string('id', 150);
18 18
             $table->string('creatable_id', 150)->index();
19 19
             $table->string('creatable_type');
Please login to merge, or discard this patch.
src/Events/Commenter/UserPresent.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,14 +40,14 @@
 block discarded – undo
40 40
      */
41 41
     public function broadcastOn()
42 42
     {
43
-        return new PrivateChannel('comments-'.$this->data['category'].'-'.$this->data['item_id']);
43
+        return new PrivateChannel('comments-' . $this->data[ 'category' ] . '-' . $this->data[ 'item_id' ]);
44 44
     }
45 45
 
46 46
     public function broadcastWith()
47 47
     {
48 48
         return [
49 49
             'user'      => $this->user,
50
-            'coming_in' => (bool) $this->data['presence'],
50
+            'coming_in' => (bool)$this->data[ 'presence' ],
51 51
         ];
52 52
     }
53 53
 
Please login to merge, or discard this patch.
src/Events/Commenter/TypingRegistered.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,14 +40,14 @@
 block discarded – undo
40 40
      */
41 41
     public function broadcastOn()
42 42
     {
43
-        return new PrivateChannel('comments-'.$this->data['category'].'-'.$this->data['item_id']);
43
+        return new PrivateChannel('comments-' . $this->data[ 'category' ] . '-' . $this->data[ 'item_id' ]);
44 44
     }
45 45
 
46 46
     public function broadcastWith()
47 47
     {
48 48
         return [
49 49
             'user'   => $this->user,
50
-            'status' => $this->name.' is typing',
50
+            'status' => $this->name . ' is typing',
51 51
         ];
52 52
     }
53 53
 
Please login to merge, or discard this patch.