1 | <?php namespace Arcanedev\LogViewer\Commands; |
||
12 | abstract class Command extends BaseCommand |
||
13 | { |
||
14 | /* ------------------------------------------------------------------------------------------------ |
||
15 | | Properties |
||
16 | | ------------------------------------------------------------------------------------------------ |
||
17 | */ |
||
18 | /** @var \Arcanedev\LogViewer\Contracts\LogViewer */ |
||
19 | protected $logViewer; |
||
20 | |||
21 | /* ------------------------------------------------------------------------------------------------ |
||
22 | | Constructor |
||
23 | | ------------------------------------------------------------------------------------------------ |
||
24 | */ |
||
25 | /** |
||
26 | * Create the command instance. |
||
27 | * |
||
28 | * @param \Arcanedev\LogViewer\Contracts\LogViewer $logViewer |
||
29 | */ |
||
30 | public function __construct(LogViewerContract $logViewer) |
||
36 | |||
37 | /* ------------------------------------------------------------------------------------------------ |
||
38 | | Other Functions |
||
39 | | ------------------------------------------------------------------------------------------------ |
||
40 | */ |
||
41 | /** |
||
42 | * Display LogViewer Logo and Copyrights. |
||
43 | */ |
||
44 | protected function displayLogViewer() |
||
59 | } |
||
60 |