1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Models/SystemLog.php
2019-10-02 08:44:13 +10:00

30 lines
638 B
PHP

<?php
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SystemLog extends Model
{
/* Category IDs */
const GATEWAY_RESPONSE = 1;
/* Event IDs*/
const PAYMENT_RECONCILIATION_FAILURE = 10;
const PAYMENT_RECONCILIATION_SUCCESS = 11;
const GATEWAY_SUCCESS = 21;
const GATEWAY_FAILURE = 22;
const GATEWAY_ERROR = 23;
}