Use Helper alias

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe
2021-09-28 19:44:55 -07:00
parent 9a83b90e44
commit 61f16f47a2
53 changed files with 112 additions and 111 deletions
@@ -33,12 +33,12 @@ class CheckoutAssetNotification extends Notification
$this->expected_checkin = '';
if ($this->item->last_checkout) {
$this->last_checkout = \App\Helpers\Helper::getFormattedDateObject($this->item->last_checkout, 'date',
$this->last_checkout = Helper::getFormattedDateObject($this->item->last_checkout, 'date',
false);
}
if ($this->item->expected_checkin) {
$this->expected_checkin = \App\Helpers\Helper::getFormattedDateObject($this->item->expected_checkin, 'date',
$this->expected_checkin = Helper::getFormattedDateObject($this->item->expected_checkin, 'date',
false);
}
}