FleetCart/Modules/Admin/Sidebar/BaseSidebarExtender.php
2023-06-11 13:14:03 +01:00

16 lines
247 B
PHP

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