for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Cache.php
*
* @copyright More in license.md
* @license https://www.ipublikuj.eu
* @author Adam Kadlec <[email protected]>
* @package iPublikuj:Gravatar!
* @subpackage Caching
* @since 1.0.0
* @date 10.03.15
*/
declare(strict_types = 1);
namespace IPub\Gravatar\Caching;
use Nette\Caching;
* Loaded gravatar cache
final class Cache extends Caching\Cache
{
* Remove all items cached by extension
* @param array $conditions
* @return void
public function clean(array $conditions = NULL) : void
parent::clean([self::TAGS => ['ipub.gravatar']]);
}