Skip to content

Commit

Permalink
Merge branch 'fix-jolicode#26-type-number-ts-to-type-string' into egu…
Browse files Browse the repository at this point in the history
…lhan-v1.1-fixes
  • Loading branch information
egulhan committed Apr 20, 2019
2 parents 944dc84 + 79d6471 commit c1f4a10
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 35 deletions.
8 changes: 4 additions & 4 deletions generated/Model/ChatDeletePostResponse200.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,19 +66,19 @@ public function setOk(?bool $ok): self
}

/**
* @return string
* @return mixed
*/
public function getTs(): ?string
public function getTs()
{
return $this->ts;
}

/**
* @param string $ts
* @param mixed $ts
*
* @return self
*/
public function setTs(?string $ts): self
public function setTs($ts = null): self
{
$this->ts = $ts;

Expand Down
8 changes: 4 additions & 4 deletions generated/Model/ChatPostMessagePostResponse200.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,19 +90,19 @@ public function setOk(?bool $ok): self
}

/**
* @return string
* @return mixed
*/
public function getTs(): ?string
public function getTs()
{
return $this->ts;
}

/**
* @param string $ts
* @param mixed $ts
*
* @return self
*/
public function setTs(?string $ts): self
public function setTs($ts = null): self
{
$this->ts = $ts;

Expand Down
8 changes: 4 additions & 4 deletions generated/Model/ChatUpdatePostResponse200.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,19 +90,19 @@ public function setText(?string $text): self
}

/**
* @return string
* @return mixed
*/
public function getTs(): ?string
public function getTs()
{
return $this->ts;
}

/**
* @param string $ts
* @param mixed $ts
*
* @return self
*/
public function setTs(?string $ts): self
public function setTs($ts = null): self
{
$this->ts = $ts;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,9 @@ public function setThreadTs(?string $threadTs): self
}

/**
* @return string
* @return mixed
*/
public function getTs(): ?string
public function getTs()
{
return $this->ts;
}
Expand All @@ -242,7 +242,7 @@ public function getTs(): ?string
*
* @return self
*/
public function setTs(?string $ts): self
public function setTs($ts = null): self
{
$this->ts = $ts;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ class ConversationsRepliesGetResponse200MessagesItemItem0RepliesItem extends \Ar
protected $user;

/**
* @return string
* @return mixed
*/
public function getTs(): ?string
public function getTs()
{
return $this->ts;
}

/**
* @param string $ts
* @param mixed $ts
*
* @return self
*/
public function setTs(?string $ts): self
public function setTs($ts = null): self
{
$this->ts = $ts;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,19 +178,19 @@ public function setThreadTs(?string $threadTs): self
}

/**
* @return string
* @return mixed
*/
public function getTs(): ?string
public function getTs()
{
return $this->ts;
}

/**
* @param string $ts
* @param mixed $ts
*
* @return self
*/
public function setTs(?string $ts): self
public function setTs($ts = null): self
{
$this->ts = $ts;

Expand Down
8 changes: 4 additions & 4 deletions generated/Model/ObjsMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -622,19 +622,19 @@ public function setTopic(?string $topic): self
}

/**
* @return string
* @return mixed
*/
public function getTs(): ?string
public function getTs()
{
return $this->ts;
}

/**
* @param string $ts
* @param mixed $ts
*
* @return self
*/
public function setTs(?string $ts): self
public function setTs($ts = null): self
{
$this->ts = $ts;

Expand Down
8 changes: 4 additions & 4 deletions generated/Model/ObjsMessageAttachmentsItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -378,19 +378,19 @@ public function setFooterIcon(?string $footerIcon): self
}

/**
* @return string
* @return mixed
*/
public function getTs(): ?string
public function getTs()
{
return $this->ts;
}

/**
* @param string $ts
* @param mixed $ts
*
* @return self
*/
public function setTs(?string $ts): self
public function setTs($ts = null): self
{
$this->ts = $ts;

Expand Down
8 changes: 4 additions & 4 deletions generated/Model/ObjsMessageRepliesItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ class ObjsMessageRepliesItem extends \ArrayObject
protected $user;

/**
* @return string
* @return mixed
*/
public function getTs(): ?string
public function getTs()
{
return $this->ts;
}

/**
* @param string $ts
* @param mixed $ts
*
* @return self
*/
public function setTs(?string $ts): self
public function setTs($ts = null): self
{
$this->ts = $ts;

Expand Down

0 comments on commit c1f4a10

Please sign in to comment.