Reverted Route::__toString() behavior and added deprecated message for proper use (part 2)

This commit is contained in:
Matias Griese
2019-01-23 21:24:31 +02:00
parent 18d53079dd
commit bd01b07b4b

View File

@@ -53,7 +53,7 @@ class Route
public function getParts()
{
return [
'path' => $this->getUriPath(),
'path' => $this->getUriPath(true),
'query' => $this->getUriQuery(),
'grav' => [
'root' => $this->root,