Code Duplication    Length = 5-5 lines in 2 locations

src/Arrayy.php 2 locations

@@ 2949-2953 (lines=5) @@
2946
        array()
2947
    );
2948
2949
    if ($this->array === null) {
2950
      $this->array = array();
2951
    } else {
2952
      $this->array = (array)$this->array;
2953
    }
2954
2955
    return $this;
2956
  }
@@ 2980-2984 (lines=5) @@
2977
        array()
2978
    );
2979
2980
    if ($this->array === null) {
2981
      $this->array = array();
2982
    } else {
2983
      $this->array = (array)$this->array;
2984
    }
2985
2986
    return $this;
2987
  }