1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-migrations.git synced 2024-07-08 01:24:22 +03:00
kohana-migrations/classes/minion/task/app/cache/purge.php
2010-12-24 15:52:03 +00:00

29 lines
390 B
PHP

<?php
/**
* Purges the application file cache
*
* @author Matt Button <matthew@sigswitch.com>
**/
class Minion_Task_Cache_Purge extends Minion_Task
{
/**
* Gets a set of config options this minion task accepts
*
* @return array
*/
public function get_config_options()
{
return array();
}
/**
* Clears the cache
*/
public function execute(array $config)
{
}
}