aboutsummaryrefslogtreecommitdiffstats
path: root/library/intl/src/Language/LanguageInterface.php
blob: 612389142219d7c2d8f8d9a00435e36e6ccfed5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php

namespace CommerceGuys\Intl\Language;

interface LanguageInterface
{
    /**
     * Gets the two-letter language code.
     *
     * @return string
     */
    public function getLanguageCode();

    /**
     * Sets the two-letter language code.
     *
     * @param string $languageCode The two-letter language code.
     */
    public function setLanguageCode($languageCode);

    /**
     * Gets the language name.
     *
     * Note that certain locales have incomplete translations, in which
     * case the english version of the language name is used instead.
     *
     * @return string
     */
    public function getName();

    /**
     * Sets the language name.
     *
     * @param string $name The language name.
     */
    public function setName($name);
}