Forked from cjonstrup/Laravel\app\commands\ViewsCommand.php
Created
July 8, 2014 02:27
-
-
Save atinder/09659db481da71163b5b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Illuminate\Console\Command; | |
use Illuminate\Filesystem\Filesystem; | |
class ViewsCommand extends Command { | |
/** | |
* The console command name. | |
* | |
* @var string | |
*/ | |
protected $name = 'views:clear'; | |
/** | |
* The console command description. | |
* | |
* @var string | |
*/ | |
protected $description = 'Clear views folder'; | |
/** | |
* The file system instance. | |
* | |
* @var \Illuminate\Filesystem\Filesystem | |
*/ | |
protected $files; | |
/** | |
* Create a new command instance. | |
* | |
* @return void | |
*/ | |
public function __construct() | |
{ | |
parent::__construct(); | |
$this->files = new \Illuminate\Filesystem\Filesystem; | |
} | |
/** | |
* Execute the console command. | |
* | |
* @return mixed | |
*/ | |
public function fire() | |
{ | |
foreach ($this->files->files(storage_path().'/views') as $file) | |
{ | |
$this->files->delete($file); | |
} | |
$this->info('Views deleted from cache'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment