1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-migrations.git synced 2024-07-17 05:44:28 +03:00
kohana-migrations/classes/minion/task/app/cache/purge.php

29 lines
390 B
PHP
Raw Normal View History

2010-12-24 17:52:03 +02:00
<?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)
{
}
}