Skip to content

Commit 2c36e4d

Browse files
authored
Fix return types in PHPDoc (#10)
1 parent c8214cb commit 2c36e4d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main/php/Gomoob/Pushwoosh/Model/Request/GetTagsRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public function jsonSerialize()
101101
*
102102
* @param string $application the Pushwoosh application ID where to send the message to.
103103
*
104-
* @return \Gomoob\Pushwoosh\Model\Request\CreateMessageRequest this instance.
104+
* @return \Gomoob\Pushwoosh\Model\Request\GetTagsRequest this instance.
105105
*/
106106
public function setApplication($application)
107107
{
@@ -115,7 +115,7 @@ public function setApplication($application)
115115
*
116116
* @param string $hwid the the hardware device id used in registerDevice function call.
117117
*
118-
* @return \Gomoob\Pushwoosh\Model\Request\GetNearestZoneRequest this instance.
118+
* @return \Gomoob\Pushwoosh\Model\Request\GetTagsRequest this instance.
119119
*/
120120
public function setHwid($hwid)
121121
{

src/main/php/Gomoob/Pushwoosh/Model/Request/SetBadgeRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public function jsonSerialize()
118118
*
119119
* @param string $application Pushwoosh application ID where you send the message to.
120120
*
121-
* @return \Gomoob\Pushwoosh\Model\Request\GetNearestZoneRequest this instance.
121+
* @return \Gomoob\Pushwoosh\Model\Request\SetBadgeRequest this instance.
122122
*/
123123
public function setApplication($application)
124124
{
@@ -144,7 +144,7 @@ public function setBadge($badge)
144144
*
145145
* @param string $hwid the the hardware device id used in registerDevice function call.
146146
*
147-
* @return \Gomoob\Pushwoosh\Model\Request\GetNearestZoneRequest this instance.
147+
* @return \Gomoob\Pushwoosh\Model\Request\SetBadgeRequest this instance.
148148
*/
149149
public function setHwid($hwid)
150150
{

0 commit comments

Comments
 (0)