for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Fisharebest\Localization\Language;
use Fisharebest\Localization\PluralRule\PluralRule1;
/**
* Class LanguageEn - Representation of the English language.
*
* @author Greg Roach <[email protected]>
* @copyright (c) 2018 Greg Roach
* @license GPLv3+
*/
class LanguageEn extends AbstractLanguage implements LanguageInterface
{
public function code()
return 'en';
}
public function pluralRule()
return new PluralRule1();