Prado\I18N\core\MessageCache::clean PHP 메소드

clean() 공개 메소드

Clean up the cache for the specified section and locale.
public clean ( string $catalogue, string $culture )
$catalogue string The translation section.
$culture string The translation locale, e.g. "en_AU".
    public function clean($catalogue, $culture)
    {
        $group = $this->getGroup($catalogue, $culture);
        $this->cache->clean($group);
    }