FluidTYPO3\Flux\FluxPackage::getImplementation PHP Метод

getImplementation() публичный Метод

Get FQN of the class that's designated as an implementation, meaning it is replaceable by Flux Packages via this method.
public getImplementation ( string $implementationName ) : string
$implementationName string
Результат string
    public function getImplementation($implementationName)
    {
        if (!empty($this->manifest['implementations']) && array_key_exists($implementationName, $this->manifest['implementations'])) {
            return $this->manifest['implementations'][$implementationName];
        }
        return $this->defaultImplementations[$implementationName];
    }