raoul2000\workflow\source\file\PhpClassLoader::getClassname PHP Метод

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

The class name is built by appending the workflow id to the namespace parameter set for this source component.
public getClassname ( string $workflowId ) : string
$workflowId string a workflow id
Результат string the full qualified class name used to provide definition for the workflow
    public function getClassname($workflowId)
    {
        return $this->getNameSpace() . '\\' . $workflowId;
    }