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