Passed
Pull Request — master (#183)
by Alex
05:55
created
src/Query/LaravelExpressionProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
         };
55 55
         $this->functionDescriptionParsers[ODataConstants::STRFUN_ENDSWITH] = function ($params) {
56 56
             return '(strcmp(substr(' . $params[0] . ', strlen(' . $params[0] . ') - strlen(' . $params[1] . ')), '
57
-                   .$params[1] . ') === 0)';
57
+                    .$params[1] . ') === 0)';
58 58
         };
59 59
         $this->functionDescriptionParsers[ODataConstants::STRFUN_INDEXOF] = function ($params) {
60 60
             return 'strpos(' . $params[0] . ', ' . $params[1] . ')';
Please login to merge, or discard this patch.
src/Models/MetadataTrait.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -244,17 +244,17 @@
 block discarded – undo
244 244
                             throw new InvalidOperationException($msg);
245 245
                         }
246 246
                         foreach ([
247
-                                     'hasMany',
248
-                                     'hasManyThrough',
249
-                                     'belongsToMany',
250
-                                     'hasOne',
251
-                                     'belongsTo',
252
-                                     'morphOne',
253
-                                     'morphTo',
254
-                                     'morphMany',
255
-                                     'morphToMany',
256
-                                     'morphedByMany'
257
-                                 ] as $relation) {
247
+                                        'hasMany',
248
+                                        'hasManyThrough',
249
+                                        'belongsToMany',
250
+                                        'hasOne',
251
+                                        'belongsTo',
252
+                                        'morphOne',
253
+                                        'morphTo',
254
+                                        'morphMany',
255
+                                        'morphToMany',
256
+                                        'morphedByMany'
257
+                                    ] as $relation) {
258 258
                             $search = '$this->' . $relation . '(';
259 259
                             if (stripos(/** @scrutinizer ignore-type */$code, $search)) {
260 260
                                 //Resolve the relation's model to a Relation object.
Please login to merge, or discard this patch.
src/Models/MetadataGubbinsHolder.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
             $others = $this->getRelationsByRelationName($className, $relName);
71 71
             if ($stub instanceof AssociationStubMonomorphic) {
72 72
                 $msg = 'Monomorphic relation stub on ' . $className . ' ' . $relName
73
-                       . ' should point to at most 1 other stub';
73
+                        . ' should point to at most 1 other stub';
74 74
                 if (!(1 >= count($others))) {
75 75
                     throw new InvalidOperationException($msg);
76 76
                 }
Please login to merge, or discard this patch.
src/Serialisers/IronicSerialiser.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
         $targClass = $resourceType->getInstanceType()->getName();
190 190
         if (!($res instanceof $targClass)) {
191 191
             $msg = 'Object being serialised not instance of expected class, '
192
-                   . $targClass . ', is actually ' . $payloadClass;
192
+                    . $targClass . ', is actually ' . $payloadClass;
193 193
             throw new InvalidOperationException($msg);
194 194
         }
195 195
 
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
             if (!(ResourcePropertyKind::RESOURCESET_REFERENCE == $propKind
246 246
                   || ResourcePropertyKind::RESOURCE_REFERENCE == $propKind)) {
247 247
                 $msg = '$propKind != ResourcePropertyKind::RESOURCESET_REFERENCE &&'
248
-                       .' $propKind != ResourcePropertyKind::RESOURCE_REFERENCE';
248
+                        .' $propKind != ResourcePropertyKind::RESOURCE_REFERENCE';
249 249
                 throw new InvalidOperationException($msg);
250 250
             }
251 251
             $propTail = ResourcePropertyKind::RESOURCE_REFERENCE == $propKind ? 'entry' : 'feed';
@@ -862,10 +862,10 @@  discard block
 block discarded – undo
862 862
     {
863 863
         $queryParameterString = null;
864 864
         foreach ([ODataConstants::HTTPQUERY_STRING_FILTER,
865
-                     ODataConstants::HTTPQUERY_STRING_EXPAND,
866
-                     ODataConstants::HTTPQUERY_STRING_ORDERBY,
867
-                     ODataConstants::HTTPQUERY_STRING_INLINECOUNT,
868
-                     ODataConstants::HTTPQUERY_STRING_SELECT, ] as $queryOption) {
865
+                        ODataConstants::HTTPQUERY_STRING_EXPAND,
866
+                        ODataConstants::HTTPQUERY_STRING_ORDERBY,
867
+                        ODataConstants::HTTPQUERY_STRING_INLINECOUNT,
868
+                        ODataConstants::HTTPQUERY_STRING_SELECT, ] as $queryOption) {
869 869
             $value = $this->getService()->getHost()->getQueryStringItem($queryOption);
870 870
             if (null !== $value) {
871 871
                 if (null !== $queryParameterString) {
@@ -1066,7 +1066,7 @@  discard block
 block discarded – undo
1066 1066
         $kVal = $typeKind->getValue();
1067 1067
         if (!(ResourceTypeKind::PRIMITIVE()->getValue() == $kVal || ResourceTypeKind::COMPLEX()->getValue() == $kVal)) {
1068 1068
             $msg = '$bagItemResourceTypeKind != ResourceTypeKind::PRIMITIVE'
1069
-                   .' && $bagItemResourceTypeKind != ResourceTypeKind::COMPLEX';
1069
+                    .' && $bagItemResourceTypeKind != ResourceTypeKind::COMPLEX';
1070 1070
             throw new InvalidOperationException($msg);
1071 1071
         }
1072 1072
         if (null == $result) {
Please login to merge, or discard this patch.