WordPress\AiClient\Tools\DTO

FunctionCall::getNamepublicWP 0.1.0

Gets the function name.

Method of the class: FunctionCall{}

No Hooks.

Returns

String|null. The function name.

Usage

$FunctionCall = new FunctionCall();
$FunctionCall->getName(): ?string;

Changelog

Since 0.1.0 Introduced.

FunctionCall::getName() code WP 7.0

public function getName(): ?string
{
    return $this->name;
}