Code Duplication    Length = 5-5 lines in 2 locations

src/Arrayy.php 2 locations

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