Issue #2130811 follow-up by fago: Correct {@inheritdoc} syntax.

8.0.x
webchick 2013-12-22 11:34:07 -08:00
parent 34008e01dc
commit 9793e997a7
5 changed files with 5 additions and 5 deletions

View File

@ -89,7 +89,7 @@ class Binary extends PrimitiveBase implements BinaryInterface {
}
/**
* @inheritdoc
* {@inheritdoc}
*/
public function getCastedValue() {
return $this->getValue();

View File

@ -24,7 +24,7 @@ use Drupal\Core\TypedData\Type\BooleanInterface;
class Boolean extends PrimitiveBase implements BooleanInterface {
/**
* @inheritdoc
* {@inheritdoc}
*/
public function getCastedValue() {
return (bool) $this->value;

View File

@ -24,7 +24,7 @@ use Drupal\Core\TypedData\Type\FloatInterface;
class Float extends PrimitiveBase implements FloatInterface {
/**
* @inheritdoc
* {@inheritdoc}
*/
public function getCastedValue() {
return (float) $this->value;

View File

@ -24,7 +24,7 @@ use Drupal\Core\TypedData\Type\IntegerInterface;
class Integer extends PrimitiveBase implements IntegerInterface {
/**
* @inheritdoc
* {@inheritdoc}
*/
public function getCastedValue() {
return (int) $this->value;

View File

@ -24,7 +24,7 @@ use Drupal\Core\TypedData\Type\StringInterface;
class String extends PrimitiveBase implements StringInterface {
/**
* @inheritdoc
* {@inheritdoc}
*/
public function getCastedValue() {
return $this->getString();