From c7aad8d8009f0d609683d56345fa2692b7f6f90a Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 5 Aug 2019 07:56:08 +0200 Subject: [PATCH] fixed phpdocs --- src/Symfony/Component/Intl/Countries.php | 4 ++-- src/Symfony/Component/Intl/Languages.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/Intl/Countries.php b/src/Symfony/Component/Intl/Countries.php index f47a67418c..07812f5131 100644 --- a/src/Symfony/Component/Intl/Countries.php +++ b/src/Symfony/Component/Intl/Countries.php @@ -53,7 +53,7 @@ final class Countries extends ResourceBundle } /** - * Get country name from alpha2 code. + * Gets the country name from alpha2 code. * * @throws MissingResourceException if the country code does not exists */ @@ -63,7 +63,7 @@ final class Countries extends ResourceBundle } /** - * Get list of country names indexed with alpha2 codes as keys. + * Gets the list of country names indexed with alpha2 codes as keys. * * @return string[] */ diff --git a/src/Symfony/Component/Intl/Languages.php b/src/Symfony/Component/Intl/Languages.php index 3f597b8eeb..a70a7e8b9c 100644 --- a/src/Symfony/Component/Intl/Languages.php +++ b/src/Symfony/Component/Intl/Languages.php @@ -50,7 +50,7 @@ final class Languages extends ResourceBundle } /** - * Get language name from alpha2 code. + * Gets the language name from alpha2 code. * * @throws MissingResourceException if the language code does not exists */ @@ -60,7 +60,7 @@ final class Languages extends ResourceBundle } /** - * Get list of language names indexed with alpha2 codes as keys. + * Gets the list of language names indexed with alpha2 codes as keys. * * @return string[] */