Code Duplication    Length = 5-5 lines in 2 locations

src/Arrayy.php 2 locations

@@ 3216-3220 (lines=5) @@
3213
        array()
3214
    );
3215
3216
    if ($this->array === null) {
3217
      $this->array = array();
3218
    } else {
3219
      $this->array = (array)$this->array;
3220
    }
3221
3222
    return $this;
3223
  }
@@ 3249-3253 (lines=5) @@
3246
        array()
3247
    );
3248
3249
    if ($this->array === null) {
3250
      $this->array = array();
3251
    } else {
3252
      $this->array = (array)$this->array;
3253
    }
3254
3255
    return $this;
3256
  }