Skip to content

Commit 44b2fc7

Browse files
committed
Fix for getUriSegment() method
1 parent e65d167 commit 44b2fc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Http.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ public static function getUriSegments() : array
252252
* @param int $segment segment
253253
* @return string
254254
*/
255-
public static function getUriSegment(int $segment) : string
255+
public static function getUriSegment(int $segment)
256256
{
257257
$segments = self::getUriSegments();
258258
return isset($segments[$segment]) ? $segments[$segment] : null;

0 commit comments

Comments
 (0)