Skip to content

Commit

Permalink
Remove return type in getTimestamp as property can be null
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian committed Jun 15, 2016
1 parent ab0e73e commit aee0003
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Khrizt/PushNotiphications/Model/Apns/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,9 @@ public function getStatus() : int
/**
* Gets the value of timestamp.
*
* @return mixed
* @return Datetime|null
*/
public function getTimestamp() : Datetime
public function getTimestamp()
{
return $this->timestamp;
}
Expand Down

0 comments on commit aee0003

Please sign in to comment.