/**
  * Create a new command instance.
  *
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     if (config('df.managed')) {
         $this->cacheRoot = Managed::getCacheRoot();
     } else {
         $this->cacheRoot = storage_path('framework/cache');
     }
 }
Ejemplo n.º 2
0
 /**
  * Create a new command instance.
  */
 public function __construct()
 {
     parent::__construct();
     $this->cacheRoot = Managed::getCacheRoot();
 }