mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
30 lines
638 B
PHP
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;
|
|
|
|
}
|