| 1 | <?php |
||
| 10 | class AuthViewComposer { |
||
| 11 | |||
| 12 | protected $auth; |
||
| 13 | protected $whitelist; |
||
| 14 | protected $request; |
||
| 15 | |||
| 16 | public function __construct(Guard $auth, Whitelist $whitelist, Request $request) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Bind data to the view. |
||
| 25 | * |
||
| 26 | * @param View $view |
||
| 27 | * @return void |
||
| 28 | */ |
||
| 29 | public function compose(View $view) |
||
| 35 | } |