AbstractProvider::metadata()

In this article

{@inheritDoc}

Source

final public static function metadata(): ProviderMetadata
{
    $className = static::class;
    if (!isset(self::$metadataCache[$className])) {
        self::$metadataCache[$className] = static::createProviderMetadata();
    }
    return self::$metadataCache[$className];
}

Changelog

VersionDescription
0.1.0Introduced.

User Contributed Notes

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