From 339c0c809953097d5927e7adb30a65219a269b7a Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 16 Apr 2014 10:09:16 +0200 Subject: [PATCH] made {@inheritdoc} annotations consistent across the board --- src/Symfony/Bridge/Twig/Command/LintCommand.php | 2 +- src/Symfony/Component/Debug/ExceptionHandler.php | 2 +- .../EventDispatcher/Debug/TraceableEventDispatcher.php | 6 +++--- .../Component/Validator/Constraints/DateTimeValidator.php | 2 +- src/Symfony/Component/Validator/Constraints/Isbn.php | 2 +- .../Component/Validator/Constraints/UuidValidator.php | 2 +- src/Symfony/Component/Validator/Validator.php | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Symfony/Bridge/Twig/Command/LintCommand.php b/src/Symfony/Bridge/Twig/Command/LintCommand.php index 6636f6cce0..79cbfce22b 100644 --- a/src/Symfony/Bridge/Twig/Command/LintCommand.php +++ b/src/Symfony/Bridge/Twig/Command/LintCommand.php @@ -32,7 +32,7 @@ class LintCommand extends Command private $twig; /** - * {@inheritDoc} + * {@inheritdoc} */ public function __construct($name = 'twig:lint') { diff --git a/src/Symfony/Component/Debug/ExceptionHandler.php b/src/Symfony/Component/Debug/ExceptionHandler.php index f5e8a518d3..da1cbe6268 100644 --- a/src/Symfony/Component/Debug/ExceptionHandler.php +++ b/src/Symfony/Component/Debug/ExceptionHandler.php @@ -57,7 +57,7 @@ class ExceptionHandler implements ExceptionHandlerInterface } /** - * {@inheritDoc} + * {@inheritdoc} * * Sends a response for the given Exception. * diff --git a/src/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcher.php b/src/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcher.php index 23ad9b77e9..410226bb36 100644 --- a/src/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcher.php +++ b/src/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcher.php @@ -48,7 +48,7 @@ class TraceableEventDispatcher implements TraceableEventDispatcherInterface } /** - * {@inheritDoc} + * {@inheritdoc} */ public function addListener($eventName, $listener, $priority = 0) { @@ -122,7 +122,7 @@ class TraceableEventDispatcher implements TraceableEventDispatcherInterface } /** - * {@inheritDoc} + * {@inheritdoc} */ public function getCalledListeners() { @@ -138,7 +138,7 @@ class TraceableEventDispatcher implements TraceableEventDispatcherInterface } /** - * {@inheritDoc} + * {@inheritdoc} */ public function getNotCalledListeners() { diff --git a/src/Symfony/Component/Validator/Constraints/DateTimeValidator.php b/src/Symfony/Component/Validator/Constraints/DateTimeValidator.php index 270ff428d2..7f4c3f8b9b 100644 --- a/src/Symfony/Component/Validator/Constraints/DateTimeValidator.php +++ b/src/Symfony/Component/Validator/Constraints/DateTimeValidator.php @@ -24,7 +24,7 @@ class DateTimeValidator extends DateValidator const PATTERN = '/^(\d{4})-(\d{2})-(\d{2}) (0[0-9]|1[0-9]|2[0-3]):([0-5][0-9]):([0-5][0-9])$/'; /** - * {@inheritDoc} + * {@inheritdoc} */ public function validate($value, Constraint $constraint) { diff --git a/src/Symfony/Component/Validator/Constraints/Isbn.php b/src/Symfony/Component/Validator/Constraints/Isbn.php index 5beb0f05a9..a7626a5823 100644 --- a/src/Symfony/Component/Validator/Constraints/Isbn.php +++ b/src/Symfony/Component/Validator/Constraints/Isbn.php @@ -40,7 +40,7 @@ class Isbn extends Constraint public $isbn13 = false; /** - * {@inheritDoc} + * {@inheritdoc} */ public function getDefaultOption() { diff --git a/src/Symfony/Component/Validator/Constraints/UuidValidator.php b/src/Symfony/Component/Validator/Constraints/UuidValidator.php index 06d8f9c107..9f1e1abb84 100644 --- a/src/Symfony/Component/Validator/Constraints/UuidValidator.php +++ b/src/Symfony/Component/Validator/Constraints/UuidValidator.php @@ -49,7 +49,7 @@ class UuidValidator extends ConstraintValidator const STRICT_UUID_LENGTH = 36; /** - * {@inheritDoc} + * {@inheritdoc} */ public function validate($value, Constraint $constraint) { diff --git a/src/Symfony/Component/Validator/Validator.php b/src/Symfony/Component/Validator/Validator.php index 3b1a42fe04..f907287d3d 100644 --- a/src/Symfony/Component/Validator/Validator.php +++ b/src/Symfony/Component/Validator/Validator.php @@ -91,7 +91,7 @@ class Validator implements ValidatorInterface, Mapping\Factory\MetadataFactoryIn } /** - * {@inheritDoc} + * {@inheritdoc} */ public function validate($value, $groups = null, $traverse = false, $deep = false) {