FluidTYPO3\Flux\FluxPackage::getImplementation PHP Method

getImplementation() public method

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
return 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];
    }