Move models to proper ProcessMaker Model namespace.

This commit is contained in:
Taylor Dondich
2019-04-25 13:54:39 -07:00
committed by Paula Quispe
parent 6b8065a98f
commit 9aec728509
7 changed files with 31 additions and 30 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace ProcessMaker\Model;
use Illuminate\Database\Eloquent\Model;
class Application extends Model
{
protected $table = "APPLICATION";
}