Passed
Pull Request — master (#33)
by Anton
06:06
created
src/actions/Action.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * Links the relationships with primary model.
28
-     * @param $model ActiveRecordInterface
28
+     * @param BaseActiveRecord $model ActiveRecordInterface
29 29
      * @param array $data
30 30
      */
31 31
     protected function linkRelationships($model, array $data = [])
Please login to merge, or discard this patch.
src/actions/UpdateAction.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,9 +5,9 @@
 block discarded – undo
5 5
 
6 6
 namespace tuyakhov\jsonapi\actions;
7 7
 
8
+use Yii;
8 9
 use yii\base\Model;
9 10
 use yii\db\ActiveRecord;
10
-use Yii;
11 11
 use yii\web\ServerErrorHttpException;
12 12
 
13 13
 class UpdateAction extends Action
Please login to merge, or discard this patch.
src/actions/UpdateRelationshipAction.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,12 +5,11 @@
 block discarded – undo
5 5
 
6 6
 namespace tuyakhov\jsonapi\actions;
7 7
 
8
-use tuyakhov\jsonapi\ResourceInterface;
8
+use Yii;
9 9
 use yii\data\ActiveDataProvider;
10 10
 use yii\db\BaseActiveRecord;
11 11
 use yii\web\BadRequestHttpException;
12 12
 use yii\web\NotFoundHttpException;
13
-use Yii;
14 13
 
15 14
 /**
16 15
  * UpdateRelationshipAction implements the API endpoint for updating relationships.
Please login to merge, or discard this patch.
src/JsonApiParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     public function parse($rawBody, $contentType)
35 35
     {
36 36
         $array = parent::parse($rawBody, $contentType);
37
-        $data =  ArrayHelper::getValue($array, 'data', []);
37
+        $data = ArrayHelper::getValue($array, 'data', []);
38 38
         if (empty($data)) {
39 39
             if ($this->throwException) {
40 40
                 throw new BadRequestHttpException('The request MUST include a single resource object as primary data.');
Please login to merge, or discard this patch.
src/Serializer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -185,10 +185,10 @@  discard block
 block discarded – undo
185 185
     {
186 186
         $result = [];
187 187
         foreach (['id', 'type'] as $key) {
188
-            $getter = 'get' . ucfirst($key);
188
+            $getter = 'get'.ucfirst($key);
189 189
             $value = $identifier->$getter();
190 190
             if ($value === null || is_array($value) || (is_object($value) && !method_exists($value, '__toString'))) {
191
-                throw new InvalidValueException("The value {$key} of resource object " . get_class($identifier) . ' MUST be a string.');
191
+                throw new InvalidValueException("The value {$key} of resource object ".get_class($identifier).' MUST be a string.');
192 192
             }
193 193
             if ($key === 'type' && $this->pluralize) {
194 194
                 $value = Inflector::pluralize($value);
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
                 }
223 223
                 foreach ($relationship as $model) {
224 224
                     if ($model instanceof ResourceInterface) {
225
-                        $uniqueKey = $model->getType() . '/' . $model->getId();
225
+                        $uniqueKey = $model->getType().'/'.$model->getId();
226 226
                         $data[$uniqueKey] = $this->serializeModel($model);
227 227
                     }
228 228
                 }
Please login to merge, or discard this patch.