16 lines
247 B
PHP
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;
|
|
}
|
|
}
|