raoul2000\workflow\source\file\PhpArrayLoader::createFilename PHP Method

createFilename() public method

Creates and returns the absolute filename of the PHP file that contains the workflow definition to load.
public createFilename ( string $workflowId ) : string
$workflowId string
return string the absolute file path of the workflow definition file
    public function createFilename($workflowId)
    {
        return Yii::getAlias($this->path) . '/' . $workflowId . '.php';
    }