Files
yii2/tests/framework/console/controllers/SilencedCacheController.php
2015-04-16 12:10:01 +03:00

20 lines
315 B
PHP

<?php
namespace yiiunit\framework\console\controllers;
use yii\console\controllers\CacheController;
/**
* CacheController that discards output.
*/
class SilencedCacheController extends CacheController
{
/**
* @inheritdoc
*/
public function stdout($string)
{
// do nothing
}
}