Skip to content
Snippets Groups Projects
Commit 9793e997 authored by Angie Byron's avatar Angie Byron
Browse files

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

parent 34008e01
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@ public function getString() {
}
/**
* @inheritdoc
* {@inheritdoc}
*/
public function getCastedValue() {
return $this->getValue();
......
......@@ -24,7 +24,7 @@
class Boolean extends PrimitiveBase implements BooleanInterface {
/**
* @inheritdoc
* {@inheritdoc}
*/
public function getCastedValue() {
return (bool) $this->value;
......
......@@ -24,7 +24,7 @@
class Float extends PrimitiveBase implements FloatInterface {
/**
* @inheritdoc
* {@inheritdoc}
*/
public function getCastedValue() {
return (float) $this->value;
......
......@@ -24,7 +24,7 @@
class Integer extends PrimitiveBase implements IntegerInterface {
/**
* @inheritdoc
* {@inheritdoc}
*/
public function getCastedValue() {
return (int) $this->value;
......
......@@ -24,7 +24,7 @@
class String extends PrimitiveBase implements StringInterface {
/**
* @inheritdoc
* {@inheritdoc}
*/
public function getCastedValue() {
return $this->getString();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment