Skip to content

Commit

Permalink
made {@inheritdoc} annotations consistent across the board
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Apr 16, 2014
1 parent cc64605 commit 1d247c5
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
Expand Up @@ -19,7 +19,7 @@
class DateTimeToRfc3339Transformer extends BaseDateTimeTransformer
{
/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function transform($dateTime)
{
Expand All @@ -40,7 +40,7 @@ public function transform($dateTime)
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function reverseTransform($rfc3339)
{
Expand Down
Expand Up @@ -22,7 +22,7 @@
class IntegerToLocalizedStringTransformer extends NumberToLocalizedStringTransformer
{
/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function reverseTransform($value)
{
Expand Down
2 changes: 1 addition & 1 deletion Extension/Csrf/CsrfExtension.php
Expand Up @@ -52,7 +52,7 @@ public function __construct(CsrfProviderInterface $csrfProvider, TranslatorInter
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
protected function loadTypeExtensions()
{
Expand Down
4 changes: 2 additions & 2 deletions Extension/Csrf/CsrfProvider/DefaultCsrfProvider.php
Expand Up @@ -41,15 +41,15 @@ public function __construct($secret)
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function generateCsrfToken($intention)
{
return sha1($this->secret.$intention.$this->getSessionId());
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function isCsrfTokenValid($intention, $token)
{
Expand Down
4 changes: 2 additions & 2 deletions Extension/Csrf/Type/FormTypeCsrfExtension.php
Expand Up @@ -107,7 +107,7 @@ public function finishView(FormView $view, FormInterface $form, array $options)
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
Expand All @@ -121,7 +121,7 @@ public function setDefaultOptions(OptionsResolverInterface $resolver)
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getExtendedType()
{
Expand Down
8 changes: 4 additions & 4 deletions Extension/Validator/ValidatorTypeGuesser.php
Expand Up @@ -28,7 +28,7 @@ public function __construct(MetadataFactoryInterface $metadataFactory)
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function guessType($class, $property)
{
Expand All @@ -40,7 +40,7 @@ public function guessType($class, $property)
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function guessRequired($class, $property)
{
Expand All @@ -54,7 +54,7 @@ public function guessRequired($class, $property)
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function guessMaxLength($class, $property)
{
Expand All @@ -66,7 +66,7 @@ public function guessMaxLength($class, $property)
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function guessPattern($class, $property)
{
Expand Down
2 changes: 1 addition & 1 deletion Form.php
Expand Up @@ -238,7 +238,7 @@ public function isRequired()
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function isDisabled()
{
Expand Down
8 changes: 4 additions & 4 deletions FormTypeGuesserChain.php
Expand Up @@ -41,7 +41,7 @@ public function __construct(array $guessers)
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function guessType($class, $property)
{
Expand All @@ -51,7 +51,7 @@ public function guessType($class, $property)
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function guessRequired($class, $property)
{
Expand All @@ -61,7 +61,7 @@ public function guessRequired($class, $property)
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function guessMaxLength($class, $property)
{
Expand All @@ -71,7 +71,7 @@ public function guessMaxLength($class, $property)
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function guessPattern($class, $property)
{
Expand Down
4 changes: 2 additions & 2 deletions ReversedTransformer.php
Expand Up @@ -38,15 +38,15 @@ public function __construct(DataTransformerInterface $reversedTransformer)
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function transform($value)
{
return $this->reversedTransformer->reverseTransform($value);
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function reverseTransform($value)
{
Expand Down

0 comments on commit 1d247c5

Please sign in to comment.