use Symfony\Contracts\Translation\LocaleAwareInterface;
use Symfony\Contracts\Translation\TranslatorInterface;
#[Package('core')]
abstract class AbstractTranslator implements TranslatorInterface, TranslatorBagInterface, LocaleAwareInterface, ResetInterface
{ /**
* @deprecated tag:v6.6.0 - Will be removed, use `reset` instead
*/
public function resetInMemoryCache(): void
{ Feature::
triggerDeprecationOrThrow( 'v6.6.0.0',
Feature::
deprecatedMethodMessage(self::
class, __METHOD__, 'v6.6.0.0', 'Use reset instead'
) );
$this->
reset();
} /**
* @param string $cacheDir
*/
public function warmUp($cacheDir): void
{