FleetCart/Modules/Admin/Sidebar/BaseSidebarExtender.php
2023-12-03 14:07:47 +00:00

17 lines
249 B
PHP

<?php
namespace Modules\Admin\Sidebar;
use Modules\User\Contracts\Authentication;
class BaseSidebarExtender
{
protected $auth;
public function __construct(Authentication $auth)
{
$this->auth = $auth;
}
}