Passed
Push — master ( b75ff6...829869 )
by Einar-Johan
03:57 queued 01:26
created
src/Move.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -135,9 +135,9 @@  discard block
 block discarded – undo
135 135
       ELSE ${wrappedParent} END";
136 136
 
137 137
         $updateConditions = [
138
-      $leftColumn => $connection->raw($lftSql),
139
-      $rightColumn => $connection->raw($rgtSql),
140
-      $parentColumn => $connection->raw($parentSql),
138
+        $leftColumn => $connection->raw($lftSql),
139
+        $rightColumn => $connection->raw($rgtSql),
140
+        $parentColumn => $connection->raw($parentSql),
141 141
     ];
142 142
 
143 143
         if ($this->node->timestamps) {
@@ -220,22 +220,22 @@  discard block
 block discarded – undo
220 220
         }
221 221
 
222 222
         switch ($this->position) {
223
-      case 'child':
223
+        case 'child':
224 224
         $this->_bound1 = $this->target->getRight();
225 225
 
226 226
         break;
227 227
 
228
-      case 'left':
228
+        case 'left':
229 229
         $this->_bound1 = $this->target->getLeft();
230 230
 
231 231
         break;
232 232
 
233
-      case 'right':
233
+        case 'right':
234 234
         $this->_bound1 = $this->target->getRight() + 1;
235 235
 
236 236
         break;
237 237
 
238
-      case 'root':
238
+        case 'root':
239 239
         $this->_bound1 = $this->node->newNestedSetQuery()->max($this->node->getRightColumnName()) + 1;
240 240
 
241 241
         break;
@@ -277,10 +277,10 @@  discard block
 block discarded – undo
277 277
         // we have defined the boundaries of two non-overlapping intervals,
278 278
         // so sorting puts both the intervals and their boundaries in order
279 279
         $this->_boundaries = [
280
-      $this->node->getLeft(),
281
-      $this->node->getRight(),
282
-      $this->bound1(),
283
-      $this->bound2(),
280
+        $this->node->getLeft(),
281
+        $this->node->getRight(),
282
+        $this->bound1(),
283
+        $this->bound2(),
284 284
     ];
285 285
         sort($this->_boundaries);
286 286
 
@@ -295,13 +295,13 @@  discard block
 block discarded – undo
295 295
     protected function parentId()
296 296
     {
297 297
         switch ($this->position) {
298
-      case 'root':
298
+        case 'root':
299 299
         return null;
300 300
 
301
-      case 'child':
301
+        case 'child':
302 302
         return $this->target->getKey();
303 303
 
304
-      default:
304
+        default:
305 305
         return $this->target->getParentId();
306 306
     }
307 307
     }
@@ -399,10 +399,10 @@  discard block
 block discarded – undo
399 399
     protected function applyLockBetween(int $lft, int $rgt): void
400 400
     {
401 401
         $this->node->newQuery()
402
-      ->where($this->node->getLeftColumnName(), '>=', $lft)
403
-      ->where($this->node->getRightColumnName(), '<=', $rgt)
404
-      ->select($this->node->getKeyName())
405
-      ->lockForUpdate()
406
-      ->get();
402
+        ->where($this->node->getLeftColumnName(), '>=', $lft)
403
+        ->where($this->node->getRightColumnName(), '<=', $rgt)
404
+        ->select($this->node->getKeyName())
405
+        ->lockForUpdate()
406
+        ->get();
407 407
     }
408 408
 }
Please login to merge, or discard this patch.
src/HasNestedSets.php 1 patch
Indentation   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -137,14 +137,14 @@  discard block
 block discarded – undo
137 137
     abstract public function isDirty($attributes = null);
138 138
 
139 139
     /**
140
-    * Define an inverse one-to-one or many relationship.
141
-    *
142
-    * @param  string  $related
143
-    * @param  string|null  $foreignKey
144
-    * @param  string|null  $ownerKey
145
-    * @param  string|null  $relation
146
-    * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
147
-    */
140
+     * Define an inverse one-to-one or many relationship.
141
+     *
142
+     * @param  string  $related
143
+     * @param  string|null  $foreignKey
144
+     * @param  string|null  $ownerKey
145
+     * @param  string|null  $relation
146
+     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
147
+     */
148 148
     abstract public function belongsTo($related, $foreignKey = null, $ownerKey = null, $relation = null);
149 149
 
150 150
     /**
@@ -186,30 +186,30 @@  discard block
 block discarded – undo
186 186
     abstract public function getKeyName();
187 187
 
188 188
     /**
189
-    * Get the parent column name.
190
-    *
191
-    * @return string
192
-    */
189
+     * Get the parent column name.
190
+     *
191
+     * @return string
192
+     */
193 193
     public function getParentColumnName(): string
194 194
     {
195 195
         return $this->parentColumn;
196 196
     }
197 197
 
198 198
     /**
199
-    * Get the table qualified parent column name.
200
-    *
201
-    * @return string
202
-    */
199
+     * Get the table qualified parent column name.
200
+     *
201
+     * @return string
202
+     */
203 203
     public function getQualifiedParentColumnName(): string
204 204
     {
205 205
         return $this->getTable().'.'.$this->getParentColumnName();
206 206
     }
207 207
 
208 208
     /**
209
-    * Get the value of the models "parent_id" field.
210
-    *
211
-    * @return int|string
212
-    */
209
+     * Get the value of the models "parent_id" field.
210
+     *
211
+     * @return int|string
212
+     */
213 213
     public function getParentId()
214 214
     {
215 215
         return $this->getAttribute($this->getparentColumnName());
@@ -375,20 +375,20 @@  discard block
 block discarded – undo
375 375
     }
376 376
 
377 377
     /**
378
-    * Parent relation (self-referential) 1-1.
379
-    *
380
-    * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
381
-    */
378
+     * Parent relation (self-referential) 1-1.
379
+     *
380
+     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
381
+     */
382 382
     public function parent(): BelongsTo
383 383
     {
384 384
         return $this->belongsTo(get_class($this), $this->getParentColumnName());
385 385
     }
386 386
 
387 387
     /**
388
-    * Children relation (self-referential) 1-N.
389
-    *
390
-    * @return \Illuminate\Database\Eloquent\Relations\HasMany
391
-    */
388
+     * Children relation (self-referential) 1-N.
389
+     *
390
+     * @return \Illuminate\Database\Eloquent\Relations\HasMany
391
+     */
392 392
     public function children(): HasMany
393 393
     {
394 394
         return $this->hasMany(get_class($this), $this->getParentColumnName())
@@ -902,11 +902,11 @@  discard block
 block discarded – undo
902 902
     }
903 903
 
904 904
     /**
905
-    * Returns the level of this node in the tree.
906
-    * Root level is 0.
907
-    *
908
-    * @return int
909
-    */
905
+     * Returns the level of this node in the tree.
906
+     * Root level is 0.
907
+     *
908
+     * @return int
909
+     */
910 910
     public function getLevel(): int
911 911
     {
912 912
         if (is_null($this->getParentId())) {
@@ -925,7 +925,7 @@  discard block
 block discarded – undo
925 925
     public function isDescendantOf($other): bool
926 926
     {
927 927
         return (
928
-      $this->getLeft() > $other->getLeft() &&
928
+        $this->getLeft() > $other->getLeft() &&
929 929
       $this->getLeft() < $other->getRight() &&
930 930
       $this->inSameScope($other)
931 931
     );
@@ -940,7 +940,7 @@  discard block
 block discarded – undo
940 940
     public function isSelfOrDescendantOf($other): bool
941 941
     {
942 942
         return (
943
-      $this->getLeft() >= $other->getLeft() &&
943
+        $this->getLeft() >= $other->getLeft() &&
944 944
       $this->getLeft() < $other->getRight() &&
945 945
       $this->inSameScope($other)
946 946
     );
@@ -955,7 +955,7 @@  discard block
 block discarded – undo
955 955
     public function isAncestorOf($other): bool
956 956
     {
957 957
         return (
958
-      $this->getLeft() < $other->getLeft() &&
958
+        $this->getLeft() < $other->getLeft() &&
959 959
       $this->getRight() > $other->getLeft() &&
960 960
       $this->inSameScope($other)
961 961
     );
@@ -970,7 +970,7 @@  discard block
 block discarded – undo
970 970
     public function isSelfOrAncestorOf($other): bool
971 971
     {
972 972
         return (
973
-      $this->getLeft() <= $other->getLeft() &&
973
+        $this->getLeft() <= $other->getLeft() &&
974 974
       $this->getRight() > $other->getLeft() &&
975 975
       $this->inSameScope($other)
976 976
     );
@@ -1342,8 +1342,8 @@  discard block
 block discarded – undo
1342 1342
         ->where($self->getLeftColumnName(), '>', $self->getLeft())
1343 1343
         ->where($self->getRightColumnName(), '<', $self->getRight())
1344 1344
         ->update([
1345
-          $self->getDeletedAtColumn() => null,
1346
-          $self->getUpdatedAtColumn() => $self->{$self->getUpdatedAtColumn()},
1345
+            $self->getDeletedAtColumn() => null,
1346
+            $self->getUpdatedAtColumn() => $self->{$self->getUpdatedAtColumn()},
1347 1347
         ]);
1348 1348
         });
1349 1349
     }
Please login to merge, or discard this patch.