for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Gettext;
abstract class BaseTranslator implements TranslatorInterface
{
/** @var TranslatorInterface */
public static $current;
/**
* @see TranslatorInterface
*/
public function register()
self::$current = $this;
include_once __DIR__.'/translator_functions.php';
}