Code Duplication    Length = 5-5 lines in 2 locations

src/Arrayy.php 2 locations

@@ 3046-3050 (lines=5) @@
3043
        array()
3044
    );
3045
3046
    if ($this->array === null) {
3047
      $this->array = array();
3048
    } else {
3049
      $this->array = (array)$this->array;
3050
    }
3051
3052
    return $this;
3053
  }
@@ 3077-3081 (lines=5) @@
3074
        array()
3075
    );
3076
3077
    if ($this->array === null) {
3078
      $this->array = array();
3079
    } else {
3080
      $this->array = (array)$this->array;
3081
    }
3082
3083
    return $this;
3084
  }