コード例 #1
0
ファイル: Command.php プロジェクト: pnagaraju25/LogViewer
 /**
  * Create the command instance.
  *
  * @param  LogViewerInterface  $logViewer
  */
 public function __construct(LogViewerInterface $logViewer)
 {
     parent::__construct();
     $this->logViewer = $logViewer;
 }
コード例 #2
0
ファイル: Command.php プロジェクト: vjandrea/LogViewer
 /**
  * Create the command instance.
  *
  * @param  \Arcanedev\LogViewer\Contracts\LogViewer  $logViewer
  */
 public function __construct(LogViewerContract $logViewer)
 {
     parent::__construct();
     $this->logViewer = $logViewer;
 }