Zahid
Zahid

Reputation: 604

delete all cache file in cakephp 3

I want to delete all file from /tmp/cache. My code spinet is below:

\Cake\Cache\Cache::delete();

but it gives the error below: -Error: Too few arguments to function Cake\Cache\Cache::delete(), 0 passed in G:\xamp727\htdocs\bootique_api\src\Controller\PagesController.php on line 94 and at least 1 expected

Upvotes: 0

Views: 1038

Answers (1)

Golub
Golub

Reputation: 195

If you want to delete all use clearAll() method. method doc

Upvotes: 1

Related Questions