1 | <?php namespace Modules\Page\Sidebar; |
||
10 | class SidebarExtender implements \Maatwebsite\Sidebar\SidebarExtender |
||
11 | { |
||
12 | /** |
||
13 | * @var Authentication |
||
14 | */ |
||
15 | protected $auth; |
||
16 | |||
17 | /** |
||
18 | * @param Authentication $auth |
||
19 | * |
||
20 | * @internal param Guard $guard |
||
21 | */ |
||
22 | public function __construct(Authentication $auth) |
||
26 | |||
27 | /** |
||
28 | * @param Menu $menu |
||
29 | * |
||
30 | * @return Menu |
||
31 | */ |
||
32 | public function extendWith(Menu $menu) |
||
51 | } |
||
52 |