Files
luos/workflow/engine/src/ProcessMaker/Application.php

19 lines
506 B
PHP
Raw Normal View History

2018-10-30 10:15:30 -04:00
<?php
namespace ProcessMaker;
class Application extends \Illuminate\Foundation\Application
{
/**
* Overrides the path to the application "app" directory.
*
* @param string $path Optionally, a path to append to the app path
* @return string
*/
public function path($path = '')
{
return $this->basePath . DIRECTORY_SEPARATOR . 'workflow' . DIRECTORY_SEPARATOR .
'engine' . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'ProcessMaker';
}
}