1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Utils/Traits/SystemLogTrait.php

40 lines
969 B
PHP
Raw Normal View History

2019-10-02 00:44:13 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-10-02 00:44:13 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
2019-10-02 00:44:13 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Utils\Traits;
2019-10-04 08:22:22 +02:00
use App\Models\Client;
2019-10-02 00:44:13 +02:00
use App\Models\SystemLog;
/**
* Class SystemLogTrait.
2019-10-02 00:44:13 +02:00
*/
trait SystemLogTrait
{
2020-10-28 11:10:49 +01:00
public function sysLog($log, $category_id = SystemLog::CATEGORY_GATEWAY_RESPONSE, $event_id = SystemLog::EVENT_GATEWAY_FAILURE, Client $client = null)
{
if ($client != null) {
$this->client = $client;
}
$sl = [
'client_id' => $this->client->id,
'company_id' => $this->client->company->id,
'user_id' => $this->client->user_id,
'log' => $log,
'category_id' => $category_id,
'event_id' => $event_id,
];
SystemLog::create($sl);
}
}