WordPress\AiClient\Providers\Models\DTO

SupportedOption::getSupportedValues │ public │ WP 0.1.0

Gets the supported values for this option.

Method of the class: SupportedOption{}

No Hooks.

Returns

list<mixed>|null. The supported values, or null if any value is supported.

Usage

$SupportedOption = new SupportedOption();
$SupportedOption->getSupportedValues(): ?array;

Changelog

Since 0.1.0 Introduced.

SupportedOption::getSupportedValues() code WP 7.1.2

public function getSupportedValues(): ?array
{
    return $this->supportedValues;
}