Code Duplication    Length = 5-5 lines in 2 locations

src/Arrayy.php 2 locations

@@ 3115-3119 (lines=5) @@
3112
        array()
3113
    );
3114
3115
    if ($this->array === null) {
3116
      $this->array = array();
3117
    } else {
3118
      $this->array = (array)$this->array;
3119
    }
3120
3121
    return $this;
3122
  }
@@ 3148-3152 (lines=5) @@
3145
        array()
3146
    );
3147
3148
    if ($this->array === null) {
3149
      $this->array = array();
3150
    } else {
3151
      $this->array = (array)$this->array;
3152
    }
3153
3154
    return $this;
3155
  }