From c6de6cf41aca3917975308e17cabe7146091aaad Mon Sep 17 00:00:00 2001 From: Angel Fernando Quiroz Campos Date: Mon, 19 Oct 2020 17:09:52 -0500 Subject: [PATCH] XAPI: Don't declarate types in class methods - refs BT#16742 --- plugin/xapi/src/Entity/SharedStatement.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/plugin/xapi/src/Entity/SharedStatement.php b/plugin/xapi/src/Entity/SharedStatement.php index 81c123858d..07e29a70be 100644 --- a/plugin/xapi/src/Entity/SharedStatement.php +++ b/plugin/xapi/src/Entity/SharedStatement.php @@ -53,7 +53,7 @@ class SharedStatement /** * @return int */ - public function getId(): int + public function getId() { return $this->id; } @@ -63,7 +63,7 @@ class SharedStatement * * @return SharedStatement */ - public function setId(int $id): SharedStatement + public function setId($id) { $this->id = $id; @@ -73,7 +73,7 @@ class SharedStatement /** * @return string */ - public function getUuid(): string + public function getUuid() { return $this->uuid; } @@ -83,7 +83,7 @@ class SharedStatement * * @return SharedStatement */ - public function setUuid(string $uuid): SharedStatement + public function setUuid($uuid) { $this->uuid = $uuid; @@ -93,7 +93,7 @@ class SharedStatement /** * @return string */ - public function getDataType(): string + public function getDataType() { return $this->dataType; } @@ -103,7 +103,7 @@ class SharedStatement * * @return SharedStatement */ - public function setDataType(string $dataType): SharedStatement + public function setDataType($dataType) { $this->dataType = $dataType; @@ -113,7 +113,7 @@ class SharedStatement /** * @return int */ - public function getDataId(): int + public function getDataId() { return $this->dataId; } @@ -123,7 +123,7 @@ class SharedStatement * * @return SharedStatement */ - public function setDataId(int $dataId): SharedStatement + public function setDataId($dataId) { $this->dataId = $dataId;