This commit is contained in:
Roly Rudy Gutierrez Pinto
2018-10-30 10:15:30 -04:00
parent 8a969ebb22
commit 218fef9951
8 changed files with 513 additions and 67 deletions

View 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';
}
}