FleetCart/Modules/Admin/Sidebar/BaseSidebarExtender.php

16 lines
247 B
PHP
Raw Normal View History

2023-06-11 12:14:03 +00:00
<?php
namespace Modules\Admin\Sidebar;
use Modules\User\Contracts\Authentication;
class BaseSidebarExtender
{
protected $auth;
public function __construct(Authentication $auth)
{
$this->auth = $auth;
}
}