예제 #1
0
 /**
  * Create the command instance.
  *
  * @param  LogViewerInterface  $logViewer
  */
 public function __construct(LogViewerInterface $logViewer)
 {
     parent::__construct();
     $this->logViewer = $logViewer;
 }
예제 #2
0
 /**
  * Create the command instance.
  *
  * @param  \Arcanedev\LogViewer\Contracts\LogViewer  $logViewer
  */
 public function __construct(LogViewerContract $logViewer)
 {
     parent::__construct();
     $this->logViewer = $logViewer;
 }