made {@inheritdoc} annotations consistent across the board

This commit is contained in:
Fabien Potencier 2014-04-16 10:09:16 +02:00
parent 24dde55feb
commit 339c0c8099
7 changed files with 9 additions and 9 deletions

View File

@ -32,7 +32,7 @@ class LintCommand extends Command
private $twig;
/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function __construct($name = 'twig:lint')
{

View File

@ -57,7 +57,7 @@ class ExceptionHandler implements ExceptionHandlerInterface
}
/**
* {@inheritDoc}
* {@inheritdoc}
*
* Sends a response for the given Exception.
*

View File

@ -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()
{

View File

@ -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)
{

View File

@ -40,7 +40,7 @@ class Isbn extends Constraint
public $isbn13 = false;
/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getDefaultOption()
{

View File

@ -49,7 +49,7 @@ class UuidValidator extends ConstraintValidator
const STRICT_UUID_LENGTH = 36;
/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function validate($value, Constraint $constraint)
{

View File

@ -91,7 +91,7 @@ class Validator implements ValidatorInterface, Mapping\Factory\MetadataFactoryIn
}
/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function validate($value, $groups = null, $traverse = false, $deep = false)
{