Code Duplication    Length = 5-5 lines in 2 locations

src/Arrayy.php 2 locations

@@ 3589-3593 (lines=5) @@
3586
        array()
3587
    );
3588
3589
    if ($this->array === null) {
3590
      $this->array = array();
3591
    } else {
3592
      $this->array = (array)$this->array;
3593
    }
3594
3595
    return $this;
3596
  }
@@ 3622-3626 (lines=5) @@
3619
        array()
3620
    );
3621
3622
    if ($this->array === null) {
3623
      $this->array = array();
3624
    } else {
3625
      $this->array = (array)$this->array;
3626
    }
3627
3628
    return $this;
3629
  }