| 1 | <?php |
||
| 21 | abstract class MiddlewareAbstract |
||
| 22 | { |
||
| 23 | use LoggedUser; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * The Guard implementation. |
||
| 27 | * |
||
| 28 | * @var Guard |
||
| 29 | */ |
||
| 30 | protected $auth; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * The application implementation. |
||
| 34 | * |
||
| 35 | * @var \Illuminate\Contracts\Foundation\Application |
||
| 36 | */ |
||
| 37 | protected $app; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Create a new filter instance. |
||
| 41 | * |
||
| 42 | * @param Guard $auth |
||
| 43 | * @param \Illuminate\Contracts\Foundation\Application $app |
||
| 44 | */ |
||
| 45 | public function __construct(Guard $auth, Application $app) |
||
| 50 | } |
||
| 51 |