Code Duplication    Length = 5-5 lines in 2 locations

src/Arrayy.php 2 locations

@@ 2771-2775 (lines=5) @@
2768
        array()
2769
    );
2770
2771
    if ($this->array === null) {
2772
      $this->array = array();
2773
    } else {
2774
      $this->array = (array)$this->array;
2775
    }
2776
2777
    return $this;
2778
  }
@@ 2802-2806 (lines=5) @@
2799
        array()
2800
    );
2801
2802
    if ($this->array === null) {
2803
      $this->array = array();
2804
    } else {
2805
      $this->array = (array)$this->array;
2806
    }
2807
2808
    return $this;
2809
  }