Code Duplication    Length = 5-5 lines in 2 locations

src/Arrayy.php 2 locations

@@ 3336-3340 (lines=5) @@
3333
        array()
3334
    );
3335
3336
    if ($this->array === null) {
3337
      $this->array = array();
3338
    } else {
3339
      $this->array = (array)$this->array;
3340
    }
3341
3342
    return $this;
3343
  }
@@ 3369-3373 (lines=5) @@
3366
        array()
3367
    );
3368
3369
    if ($this->array === null) {
3370
      $this->array = array();
3371
    } else {
3372
      $this->array = (array)$this->array;
3373
    }
3374
3375
    return $this;
3376
  }