ClassDiscovery::appendStrategy( string $strategy )

In this article

Append a strategy at the end of the strategy queue.

Parameters

$strategystringrequired
Fully qualified class name of a DiscoveryStrategy

Source

public static function appendStrategy($strategy)
{
    self::$strategies[] = $strategy;
    self::clearCache();
}

User Contributed Notes

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