codeformunich/Muenchen-Transparent

View on GitHub
protected/commands/ClearDBCacheCommand.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

class ClearDBCacheCommand extends CConsoleCommand
{
    public function run($args)
    {
        Yii::app()->cache->flush();
    }
}