Code Duplication    Length = 5-5 lines in 2 locations

src/Arrayy.php 2 locations

@@ 3318-3322 (lines=5) @@
3315
        array()
3316
    );
3317
3318
    if ($this->array === null) {
3319
      $this->array = array();
3320
    } else {
3321
      $this->array = (array)$this->array;
3322
    }
3323
3324
    return $this;
3325
  }
@@ 3351-3355 (lines=5) @@
3348
        array()
3349
    );
3350
3351
    if ($this->array === null) {
3352
      $this->array = array();
3353
    } else {
3354
      $this->array = (array)$this->array;
3355
    }
3356
3357
    return $this;
3358
  }