HOR-4915
This commit is contained in:
18
workflow/engine/src/ProcessMaker/Application.php
Normal file
18
workflow/engine/src/ProcessMaker/Application.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user