Test Setup Failed
Push — master ( 1ac59e...c71855 )
by Xu
37:45
created
src/base/Collection.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -405,6 +405,6 @@
 block discarded – undo
405 405
         } elseif ($items instanceof Traversable) {
406 406
             return iterator_to_array($items);
407 407
         }
408
-        return (array) $items;
408
+        return (array)$items;
409 409
     }
410 410
 }
411 411
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -400,7 +400,7 @@
 block discarded – undo
400 400
             return $items->all();
401 401
         } elseif ($items instanceof Arrayable) {
402 402
             return $items->toArray();
403
-        }  elseif ($items instanceof JsonSerializable) {
403
+        } elseif ($items instanceof JsonSerializable) {
404 404
             return $items->jsonSerialize();
405 405
         } elseif ($items instanceof Traversable) {
406 406
             return iterator_to_array($items);
Please login to merge, or discard this patch.
src/behaviors/SnowflakeBehavior.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     {
44 44
         parent::init();
45 45
         if (empty($this->attributes)) {
46
-            $this->attributes = [BaseActiveRecord::EVENT_BEFORE_INSERT => [$this->attribute],];
46
+            $this->attributes = [BaseActiveRecord::EVENT_BEFORE_INSERT => [$this->attribute], ];
47 47
         }
48 48
         if ($this->attribute === null) {
49 49
             throw new InvalidConfigException('Either "attribute" property must be specified.');
Please login to merge, or discard this patch.
src/notifications/channels/JPushChannel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,10 +34,10 @@
 block discarded – undo
34 34
     {
35 35
         parent::init();
36 36
         if (empty ($this->appKey)) {
37
-            throw new InvalidConfigException ('The "appKey" property must be set.');
37
+            throw new InvalidConfigException('The "appKey" property must be set.');
38 38
         }
39 39
         if (empty ($this->appSecret)) {
40
-            throw new InvalidConfigException ('The "appSecret" property must be set.');
40
+            throw new InvalidConfigException('The "appSecret" property must be set.');
41 41
         }
42 42
         $this->_client = new JPush($this->appKey, $this->appSecret);
43 43
     }
Please login to merge, or discard this patch.
src/notifications/NotificationTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      */
57 57
     public function exportFor($channel)
58 58
     {
59
-        if (method_exists($this, $method = 'exportFor'.Inflector::camelize($channel))) {
59
+        if (method_exists($this, $method = 'exportFor' . Inflector::camelize($channel))) {
60 60
             return $this->{$method}();
61 61
         }
62 62
         throw new \InvalidArgumentException("Can not find message export for chanel `{$channel}`");
Please login to merge, or discard this patch.
src/console/views/migrate/addColumnMigration.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
 /**
24 24
  * Handles adding <?= $columns ?> to table `<?= $table ?>`.
25 25
 <?= $this->render('_foreignTables', [
26
-     'foreignKeys' => $foreignKeys,
27
- ]) ?>
26
+        'foreignKeys' => $foreignKeys,
27
+    ]) ?>
28 28
  */
29 29
 class <?= $className ?> extends Migration
30 30
 {
Please login to merge, or discard this patch.
src/behaviors/DatetimeBehavior.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,6 +139,6 @@
 block discarded – undo
139 139
         if ($owner->getIsNewRecord()) {
140 140
             throw new InvalidCallException('Updating the timestamp is not possible on a new record.');
141 141
         }
142
-        $owner->updateAttributes(array_fill_keys((array) $attribute, $this->getValue(null)));
142
+        $owner->updateAttributes(array_fill_keys((array)$attribute, $this->getValue(null)));
143 143
     }
144 144
 }
145 145
\ No newline at end of file
Please login to merge, or discard this patch.
src/sms/gateways/AliyunGateway.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,13 +55,13 @@
 block discarded – undo
55 55
     {
56 56
         parent::init();
57 57
         if (empty ($this->accessId)) {
58
-            throw new InvalidConfigException ('The "accessId" property must be set.');
58
+            throw new InvalidConfigException('The "accessId" property must be set.');
59 59
         }
60 60
         if (empty ($this->accessKey)) {
61
-            throw new InvalidConfigException ('The "accessKey" property must be set.');
61
+            throw new InvalidConfigException('The "accessKey" property must be set.');
62 62
         }
63 63
         if (empty ($this->signName)) {
64
-            throw new InvalidConfigException ('The "signName" property must be set.');
64
+            throw new InvalidConfigException('The "signName" property must be set.');
65 65
         }
66 66
     }
67 67
 
Please login to merge, or discard this patch.
src/sms/gateways/QcloudGateway.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,10 +44,10 @@
 block discarded – undo
44 44
     {
45 45
         parent::init();
46 46
         if (empty ($this->appId)) {
47
-            throw new InvalidConfigException ('The "appId" property must be set.');
47
+            throw new InvalidConfigException('The "appId" property must be set.');
48 48
         }
49 49
         if (empty ($this->appKey)) {
50
-            throw new InvalidConfigException ('The "appKey" property must be set.');
50
+            throw new InvalidConfigException('The "appKey" property must be set.');
51 51
         }
52 52
     }
53 53
 
Please login to merge, or discard this patch.
src/sms/gateways/YuntongxunGateway.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,13 +45,13 @@
 block discarded – undo
45 45
     {
46 46
         parent::init();
47 47
         if (empty ($this->appId)) {
48
-            throw new InvalidConfigException ('The "appId" property must be set.');
48
+            throw new InvalidConfigException('The "appId" property must be set.');
49 49
         }
50 50
         if (empty ($this->accountSid)) {
51
-            throw new InvalidConfigException ('The "accountSid" property must be set.');
51
+            throw new InvalidConfigException('The "accountSid" property must be set.');
52 52
         }
53 53
         if (empty ($this->accountToken)) {
54
-            throw new InvalidConfigException ('The "accountToken" property must be set.');
54
+            throw new InvalidConfigException('The "accountToken" property must be set.');
55 55
         }
56 56
     }
57 57
 
Please login to merge, or discard this patch.