Skip to content

Commit

Permalink
Fix Request class return types (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
bahramsadin committed Sep 12, 2024
1 parent 26a9462 commit 140f8ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static function input(string $name)
*
* @param string $name
*
* @return void
* @return mixed|null
*/
public static function post(string $name)
{
Expand All @@ -78,7 +78,7 @@ public static function post(string $name)
*
* @param string $name
*
* @return void
* @return mixed|null
*/
public static function get(string $name)
{
Expand Down

0 comments on commit 140f8ac

Please sign in to comment.