PMC-1378 Create/Fix unit tests for the feature "GMail API email server"

This commit is contained in:
Roly Rudy Gutierrez Pinto
2019-12-12 11:32:20 -04:00
parent d093b959af
commit 920b791601
14 changed files with 1160 additions and 86 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace ProcessMaker\Model;
use Illuminate\Database\Eloquent\Model;
class AppMessage extends Model
{
protected $table = 'APP_MESSAGE';
public $timestamps = false;
}