Code Duplication    Length = 5-5 lines in 2 locations

src/Arrayy.php 2 locations

@@ 3083-3087 (lines=5) @@
3080
        array()
3081
    );
3082
3083
    if ($this->array === null) {
3084
      $this->array = array();
3085
    } else {
3086
      $this->array = (array)$this->array;
3087
    }
3088
3089
    return $this;
3090
  }
@@ 3116-3120 (lines=5) @@
3113
        array()
3114
    );
3115
3116
    if ($this->array === null) {
3117
      $this->array = array();
3118
    } else {
3119
      $this->array = (array)$this->array;
3120
    }
3121
3122
    return $this;
3123
  }