XAPI: Don't declarate types in class methods - refs BT#16742

pull/3680/head
Angel Fernando Quiroz Campos 5 years ago
parent 535464fe0a
commit c6de6cf41a
  1. 16
      plugin/xapi/src/Entity/SharedStatement.php

@ -53,7 +53,7 @@ class SharedStatement
/** /**
* @return int * @return int
*/ */
public function getId(): int public function getId()
{ {
return $this->id; return $this->id;
} }
@ -63,7 +63,7 @@ class SharedStatement
* *
* @return SharedStatement * @return SharedStatement
*/ */
public function setId(int $id): SharedStatement public function setId($id)
{ {
$this->id = $id; $this->id = $id;
@ -73,7 +73,7 @@ class SharedStatement
/** /**
* @return string * @return string
*/ */
public function getUuid(): string public function getUuid()
{ {
return $this->uuid; return $this->uuid;
} }
@ -83,7 +83,7 @@ class SharedStatement
* *
* @return SharedStatement * @return SharedStatement
*/ */
public function setUuid(string $uuid): SharedStatement public function setUuid($uuid)
{ {
$this->uuid = $uuid; $this->uuid = $uuid;
@ -93,7 +93,7 @@ class SharedStatement
/** /**
* @return string * @return string
*/ */
public function getDataType(): string public function getDataType()
{ {
return $this->dataType; return $this->dataType;
} }
@ -103,7 +103,7 @@ class SharedStatement
* *
* @return SharedStatement * @return SharedStatement
*/ */
public function setDataType(string $dataType): SharedStatement public function setDataType($dataType)
{ {
$this->dataType = $dataType; $this->dataType = $dataType;
@ -113,7 +113,7 @@ class SharedStatement
/** /**
* @return int * @return int
*/ */
public function getDataId(): int public function getDataId()
{ {
return $this->dataId; return $this->dataId;
} }
@ -123,7 +123,7 @@ class SharedStatement
* *
* @return SharedStatement * @return SharedStatement
*/ */
public function setDataId(int $dataId): SharedStatement public function setDataId($dataId)
{ {
$this->dataId = $dataId; $this->dataId = $dataId;

Loading…
Cancel
Save