PMCORE-1335 ProcessMaker core should be use the native Laravel log mechanism.
This commit is contained in:
14
app/Foundation/Application.php
Normal file
14
app/Foundation/Application.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Foundation;
|
||||
|
||||
use Illuminate\Foundation\Application as BaseApplication;
|
||||
|
||||
class Application extends BaseApplication
|
||||
{
|
||||
|
||||
protected function registerBaseServiceProviders(): void
|
||||
{
|
||||
parent::registerBaseServiceProviders();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user