@@ -405,6 +405,6 @@ |
||
| 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 |
@@ -400,7 +400,7 @@ |
||
| 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); |
@@ -43,7 +43,7 @@ |
||
| 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.'); |
@@ -34,10 +34,10 @@ |
||
| 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 | } |
@@ -56,7 +56,7 @@ |
||
| 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}`"); |
@@ -23,8 +23,8 @@ |
||
| 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 | { |
@@ -139,6 +139,6 @@ |
||
| 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 |
@@ -55,13 +55,13 @@ |
||
| 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 | |
@@ -44,10 +44,10 @@ |
||
| 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 | |
@@ -45,13 +45,13 @@ |
||
| 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 | |