nspl\ds\ArrayObject::fromArray PHP Method

fromArray() public static method

public static fromArray ( array $array ) : static
$array array
return static
    public static function fromArray(array $array)
    {
        $result = new static();
        $result->array = $array;
        return $result;
    }