Issue #2130811 follow-up by fago: Correct {@inheritdoc} syntax.
parent
34008e01dc
commit
9793e997a7
|
@ -89,7 +89,7 @@ class Binary extends PrimitiveBase implements BinaryInterface {
|
|||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getCastedValue() {
|
||||
return $this->getValue();
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -24,7 +24,7 @@ use Drupal\Core\TypedData\Type\StringInterface;
|
|||
class String extends PrimitiveBase implements StringInterface {
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getCastedValue() {
|
||||
return $this->getString();
|
||||
|
|
Loading…
Reference in New Issue