mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-07-11 00:22:15 +00:00
Fixed deprication warnings
This commit is contained in:
@@ -106,7 +106,7 @@ class RouteResource extends LoadableRoute implements IControllerRoute
|
||||
return false;
|
||||
}
|
||||
|
||||
$action = strtolower(trim($this->parameters['action']));
|
||||
$action = strtolower(trim((string)$this->parameters['action']));
|
||||
$id = $this->parameters['id'];
|
||||
|
||||
// Remove action parameter
|
||||
|
||||
Reference in New Issue
Block a user