summaryrefslogtreecommitdiff
path: root/vendor/fisharebest/localization/src/Language/AbstractLanguage.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/fisharebest/localization/src/Language/AbstractLanguage.php')
-rw-r--r--vendor/fisharebest/localization/src/Language/AbstractLanguage.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/vendor/fisharebest/localization/src/Language/AbstractLanguage.php b/vendor/fisharebest/localization/src/Language/AbstractLanguage.php
index 72dbb87d90..5d84f96d92 100644
--- a/vendor/fisharebest/localization/src/Language/AbstractLanguage.php
+++ b/vendor/fisharebest/localization/src/Language/AbstractLanguage.php
@@ -11,17 +11,14 @@ use Fisharebest\Localization\Territory\Territory001;
* @license GPLv3+
*/
abstract class AbstractLanguage {
- /** {@inheritdoc} */
public function defaultTerritory() {
return new Territory001;
}
- /** {@inheritdoc} */
public function defaultScript() {
return new ScriptLatn;
}
- /** {@inheritdoc} */
public function pluralRule() {
throw new \DomainException('No plural rule defined for language ' . __CLASS__);
}