FunctionCall::fromArray( $array )

In this article

{@inheritDoc}

Source

public static function fromArray(array $array): self
{
    return new self($array[self::KEY_ID] ?? null, $array[self::KEY_NAME] ?? null, $array[self::KEY_ARGS] ?? null);
}

Changelog

VersionDescription
0.1.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.