for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Maestriam\Samurai\Foundation;
use Illuminate\Support\Facades\Artisan;
class FileSystem
{
/**
* Limpa o cache do projeto
*
* @return void
*/
public function clearCache()
Artisan::call('view:clear');
Artisan::call('cache:clear');
return true;
return true
true
void
}