mirror of
https://github.com/aoaostar/toolbox.git
synced 2025-12-27 23:11:05 +00:00
16 lines
197 B
PHP
16 lines
197 B
PHP
<?php
|
|
|
|
namespace app\controller\master;
|
|
|
|
|
|
use app\BaseController;
|
|
|
|
class Clear extends BaseController
|
|
{
|
|
public function get()
|
|
{
|
|
clear_cache(true);
|
|
return success();
|
|
}
|
|
}
|