Skip to content

Commit 8170937

Browse files
committed
Remove useless type specifications
1 parent 64573c5 commit 8170937

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/WaterPipe/HTTP/Request/RequestData.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public function rewind(): void
205205
*
206206
* @return void
207207
*/
208-
public function seek(int $position): void
208+
public function seek($position): void
209209
{
210210
$this->_position = $position;
211211
}
@@ -231,7 +231,7 @@ public function serialize(): string
231231
*
232232
* @return void
233233
*/
234-
public function unserialize(string $serialized): void
234+
public function unserialize($serialized): void
235235
{
236236
$this->_parameters = json_decode($serialized, true);
237237
}

0 commit comments

Comments
 (0)