Prado\I18N\core\MessageCache::clean PHP Method

clean() public method

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);
    }