[Intl] Fixed flawed PHPDoc

This commit is contained in:
Bernhard Schussek 2013-03-15 17:03:35 +01:00
parent 21323ba2a2
commit bfec58a675
4 changed files with 11 additions and 11 deletions

View File

@ -23,7 +23,7 @@ interface CurrencyBundleInterface extends ResourceBundleInterface
*
* @param string $currency A currency code (e.g. "EUR").
* @param string $locale Optional. The locale to return the result in.
* Defaults to {@link \Locale::getLocale()}.
* Defaults to {@link \Locale::getDefault()}.
*
* @return string|null The currency symbol or NULL if not found.
*/
@ -34,7 +34,7 @@ interface CurrencyBundleInterface extends ResourceBundleInterface
*
* @param string $currency A currency code (e.g. "EUR").
* @param string $locale Optional. The locale to return the name in.
* Defaults to {@link \Locale::getLocale()}.
* Defaults to {@link \Locale::getDefault()}.
*
* @return string|null The name of the currency or NULL if not found.
*/
@ -44,7 +44,7 @@ interface CurrencyBundleInterface extends ResourceBundleInterface
* Returns the names of all known currencies.
*
* @param string $locale Optional. The locale to return the names in.
* Defaults to {@link \Locale::getLocale()}.
* Defaults to {@link \Locale::getDefault()}.
*
* @return string[] A list of currency names indexed by currency codes.
*/

View File

@ -24,7 +24,7 @@ interface LanguageBundleInterface extends ResourceBundleInterface
* @param string $lang A language code (e.g. "en").
* @param string|null $region Optional. A region code (e.g. "US").
* @param string $locale Optional. The locale to return the name in.
* Defaults to {@link \Locale::getLocale()}.
* Defaults to {@link \Locale::getDefault()}.
*
* @return string|null The name of the language or NULL if not found.
*/
@ -34,7 +34,7 @@ interface LanguageBundleInterface extends ResourceBundleInterface
* Returns the names of all known languages.
*
* @param string $locale Optional. The locale to return the names in.
* Defaults to {@link \Locale::getLocale()}.
* Defaults to {@link \Locale::getDefault()}.
*
* @return string[] A list of language names indexed by language codes.
*/
@ -46,7 +46,7 @@ interface LanguageBundleInterface extends ResourceBundleInterface
* @param string $script A script code (e.g. "Hans").
* @param string $lang Optional. A language code (e.g. "zh").
* @param string $locale Optional. The locale to return the name in.
* Defaults to {@link \Locale::getLocale()}.
* Defaults to {@link \Locale::getDefault()}.
*
* @return string|null The name of the script or NULL if not found.
*/
@ -56,7 +56,7 @@ interface LanguageBundleInterface extends ResourceBundleInterface
* Returns the names of all known scripts.
*
* @param string $locale Optional. The locale to return the names in.
* Defaults to {@link \Locale::getLocale()}.
* Defaults to {@link \Locale::getDefault()}.
*
* @return string[] A list of script names indexed by script codes.
*/

View File

@ -23,7 +23,7 @@ interface LocaleBundleInterface extends ResourceBundleInterface
*
* @param string $ofLocale The locale to return the name of (e.g. "de_AT").
* @param string $locale Optional. The locale to return the name in.
* Defaults to {@link \Locale::getLocale()}.
* Defaults to {@link \Locale::getDefault()}.
*
* @return string|null The name of the locale or NULL if not found.
*/
@ -33,7 +33,7 @@ interface LocaleBundleInterface extends ResourceBundleInterface
* Returns the names of all known locales.
*
* @param string $locale Optional. The locale to return the names in.
* Defaults to {@link \Locale::getLocale()}.
* Defaults to {@link \Locale::getDefault()}.
*
* @return string[] A list of locale names indexed by locale codes.
*/

View File

@ -23,7 +23,7 @@ interface RegionBundleInterface extends ResourceBundleInterface
*
* @param string $country A country code (e.g. "US").
* @param string $locale Optional. The locale to return the name in.
* Defaults to {@link \Locale::getLocale()}.
* Defaults to {@link \Locale::getDefault()}.
*
* @return string|null The name of the country or NULL if not found.
*/
@ -33,7 +33,7 @@ interface RegionBundleInterface extends ResourceBundleInterface
* Returns the names of all known countries.
*
* @param string $locale Optional. The locale to return the names in.
* Defaults to {@link \Locale::getLocale()}.
* Defaults to {@link \Locale::getDefault()}.
*
* @return string[] A list of country names indexed by country codes.
*/