3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-05 13:45:51 +00:00

Use more verbose annotation for Auth::user if/else

This commit is contained in:
snipe
2020-08-14 15:27:40 -07:00
parent 134e8e6fb9
commit 29f3a5c48f

View File

@ -41,8 +41,9 @@ trait Loggable
$settings = Setting::getSettings();
$log = new Actionlog;
$log = $this->determineLogItemType($log);
if(Auth::user())
if (Auth::user()) {
$log->user_id = Auth::user()->id;
}
if (!isset($target)) {
throw new \Exception('All checkout logs require a target.');
@ -144,9 +145,11 @@ trait Loggable
$log->location_id = null;
$log->note = $note;
if(Auth::user())
$log->user_id = Auth::user()->id;
if (Auth::user()) {
$log->user_id = Auth::user()->id;
}
$log->logaction('checkin from');
$params = [