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\PluralRule9;
use Fisharebest\Localization\Territory\TerritoryPl;
/**
* Class LanguagePl - Representation of the Polish language.
*
* @author Greg Roach <[email protected]>
* @copyright (c) 2018 Greg Roach
* @license GPLv3+
*/
class LanguagePl extends AbstractLanguage implements LanguageInterface
{
public function code()
return 'pl';
}
public function defaultTerritory()
return new TerritoryPl();
public function pluralRule()
return new PluralRule9();