WordPress\AiClient\Tools\DTO

FunctionDeclaration::getNamepublicWP 0.1.0

Gets the function name.

Method of the class: FunctionDeclaration{}

No Hooks.

Returns

String. The function name.

Usage

$FunctionDeclaration = new FunctionDeclaration();
$FunctionDeclaration->getName(): string;

Changelog

Since 0.1.0 Introduced.

FunctionDeclaration::getName() code WP 7.0

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