Code Duplication    Length = 5-5 lines in 2 locations

src/Arrayy.php 2 locations

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