Code Duplication    Length = 5-5 lines in 2 locations

src/Arrayy.php 2 locations

@@ 2801-2805 (lines=5) @@
2798
        array()
2799
    );
2800
2801
    if ($this->array === null) {
2802
      $this->array = array();
2803
    } else {
2804
      $this->array = (array)$this->array;
2805
    }
2806
2807
    return $this;
2808
  }
@@ 2832-2836 (lines=5) @@
2829
        array()
2830
    );
2831
2832
    if ($this->array === null) {
2833
      $this->array = array();
2834
    } else {
2835
      $this->array = (array)$this->array;
2836
    }
2837
2838
    return $this;
2839
  }