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
No known key found for this signature in database
GPG key ID: 10BFFDA3ED34B5AC

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 = [