From cc0047d38b316ea82a76482302a70b11c14f0c7c Mon Sep 17 00:00:00 2001 From: Vinicius Gava Date: Sat, 18 Apr 2020 20:08:39 -0300 Subject: [PATCH] Remove @version of all classes --- src/Client.php | 1 - src/DetectInterface.php | 1 - src/Exception/DetectErrorException.php | 1 - src/Exception/InvalidAccessKeyException.php | 1 - src/Exception/InvalidLanguageException.php | 1 - src/Exception/InvalidSourceLanguageException.php | 1 - src/Exception/InvalidTargetLanguageException.php | 1 - src/Exception/InvalidTextException.php | 1 - src/Exception/LanguagesErrorException.php | 1 - src/Exception/TranslateErrorException.php | 1 - src/LanguagesInterface.php | 1 - src/TranslateInterface.php | 1 - 12 files changed, 12 deletions(-) diff --git a/src/Client.php b/src/Client.php index 0570a03..88464fd 100644 --- a/src/Client.php +++ b/src/Client.php @@ -11,7 +11,6 @@ * * @link https://github.com/viniciusgava/google-translate-php-client * @license http://www.gnu.org/copyleft/gpl.html - * @version 2.0 * @author Vinicius Gava (gava.vinicius@gmail.com) */ class Client implements TranslateInterface, LanguagesInterface, DetectInterface diff --git a/src/DetectInterface.php b/src/DetectInterface.php index 80fcc94..5c8a38b 100644 --- a/src/DetectInterface.php +++ b/src/DetectInterface.php @@ -7,7 +7,6 @@ * * @link https://github.com/viniciusgava/google-translate-php-client * @license http://www.gnu.org/copyleft/gpl.html - * @version 2.0 * @author Vinicius Gava (gava.vinicius@gmail.com) */ interface DetectInterface diff --git a/src/Exception/DetectErrorException.php b/src/Exception/DetectErrorException.php index 53e2da0..4750862 100644 --- a/src/Exception/DetectErrorException.php +++ b/src/Exception/DetectErrorException.php @@ -7,7 +7,6 @@ * * @link https://github.com/viniciusgava/google-translate-php-client * @license http://www.gnu.org/copyleft/gpl.html - * @version 2.0 * @author Vinicius Gava (gava.vinicius@gmail.com) */ class DetectErrorException extends \DomainException diff --git a/src/Exception/InvalidAccessKeyException.php b/src/Exception/InvalidAccessKeyException.php index 2696eb0..561b9a5 100644 --- a/src/Exception/InvalidAccessKeyException.php +++ b/src/Exception/InvalidAccessKeyException.php @@ -7,7 +7,6 @@ * * @link https://github.com/viniciusgava/google-translate-php-client * @license http://www.gnu.org/copyleft/gpl.html - * @version 2.0 * @author Vinicius Gava (gava.vinicius@gmail.com) */ class InvalidAccessKeyException extends \InvalidArgumentException diff --git a/src/Exception/InvalidLanguageException.php b/src/Exception/InvalidLanguageException.php index 4513bc9..aecada0 100644 --- a/src/Exception/InvalidLanguageException.php +++ b/src/Exception/InvalidLanguageException.php @@ -7,7 +7,6 @@ * * @link https://github.com/viniciusgava/google-translate-php-client * @license http://www.gnu.org/copyleft/gpl.html - * @version 2.0 * @author Vinicius Gava (gava.vinicius@gmail.com) */ class InvalidLanguageException extends \InvalidArgumentException diff --git a/src/Exception/InvalidSourceLanguageException.php b/src/Exception/InvalidSourceLanguageException.php index ff19445..bac1c33 100644 --- a/src/Exception/InvalidSourceLanguageException.php +++ b/src/Exception/InvalidSourceLanguageException.php @@ -7,7 +7,6 @@ * * @link https://github.com/viniciusgava/google-translate-php-client * @license http://www.gnu.org/copyleft/gpl.html - * @version 2.0 * @author Vinicius Gava (gava.vinicius@gmail.com) */ class InvalidSourceLanguageException extends InvalidLanguageException diff --git a/src/Exception/InvalidTargetLanguageException.php b/src/Exception/InvalidTargetLanguageException.php index bd89196..fa31b5f 100644 --- a/src/Exception/InvalidTargetLanguageException.php +++ b/src/Exception/InvalidTargetLanguageException.php @@ -7,7 +7,6 @@ * * @link https://github.com/viniciusgava/google-translate-php-client * @license http://www.gnu.org/copyleft/gpl.html - * @version 2.0 * @author Vinicius Gava (gava.vinicius@gmail.com) */ class InvalidTargetLanguageException extends InvalidLanguageException diff --git a/src/Exception/InvalidTextException.php b/src/Exception/InvalidTextException.php index 92ba91c..0065eea 100644 --- a/src/Exception/InvalidTextException.php +++ b/src/Exception/InvalidTextException.php @@ -7,7 +7,6 @@ * * @link https://github.com/viniciusgava/google-translate-php-client * @license http://www.gnu.org/copyleft/gpl.html - * @version 2.0 * @author Vinicius Gava (gava.vinicius@gmail.com) */ class InvalidTextException extends \InvalidArgumentException diff --git a/src/Exception/LanguagesErrorException.php b/src/Exception/LanguagesErrorException.php index 2311184..da93d07 100644 --- a/src/Exception/LanguagesErrorException.php +++ b/src/Exception/LanguagesErrorException.php @@ -7,7 +7,6 @@ * * @link https://github.com/viniciusgava/google-translate-php-client * @license http://www.gnu.org/copyleft/gpl.html - * @version 2.0 * @author Vinicius Gava (gava.vinicius@gmail.com) */ class LanguagesErrorException extends \DomainException diff --git a/src/Exception/TranslateErrorException.php b/src/Exception/TranslateErrorException.php index 372ccec..f40714c 100644 --- a/src/Exception/TranslateErrorException.php +++ b/src/Exception/TranslateErrorException.php @@ -7,7 +7,6 @@ * * @link https://github.com/viniciusgava/google-translate-php-client * @license http://www.gnu.org/copyleft/gpl.html - * @version 2.0 * @author Vinicius Gava (gava.vinicius@gmail.com) */ class TranslateErrorException extends \DomainException diff --git a/src/LanguagesInterface.php b/src/LanguagesInterface.php index a279e93..fdda4d8 100644 --- a/src/LanguagesInterface.php +++ b/src/LanguagesInterface.php @@ -7,7 +7,6 @@ * * @link https://github.com/viniciusgava/google-translate-php-client * @license http://www.gnu.org/copyleft/gpl.html - * @version 2.0 * @author Vinicius Gava (gava.vinicius@gmail.com) */ interface LanguagesInterface diff --git a/src/TranslateInterface.php b/src/TranslateInterface.php index 374adad..ed1e8f3 100644 --- a/src/TranslateInterface.php +++ b/src/TranslateInterface.php @@ -7,7 +7,6 @@ * * @link https://github.com/viniciusgava/google-translate-php-client * @license http://www.gnu.org/copyleft/gpl.html - * @version 2.0 * @author Vinicius Gava (gava.vinicius@gmail.com) */ interface TranslateInterface