Code Duplication    Length = 5-5 lines in 2 locations

src/Arrayy.php 2 locations

@@ 2788-2792 (lines=5) @@
2785
        array()
2786
    );
2787
2788
    if ($this->array === null) {
2789
      $this->array = array();
2790
    } else {
2791
      $this->array = (array)$this->array;
2792
    }
2793
2794
    return $this;
2795
  }
@@ 2819-2823 (lines=5) @@
2816
        array()
2817
    );
2818
2819
    if ($this->array === null) {
2820
      $this->array = array();
2821
    } else {
2822
      $this->array = (array)$this->array;
2823
    }
2824
2825
    return $this;
2826
  }