Admin_WorkflowController::getDecorator PHP Метод

getDecorator() защищенный Метод

Returns a Decorator for the Workflow
protected getDecorator ( ) : Decorator
Результат Pimcore\WorkflowManagement\Workflow\Decorator
    protected function getDecorator()
    {
        if ($this->decorator) {
            return $this->decorator;
        }
        $this->decorator = new Workflow\Decorator();
        return $this->decorator;
    }