@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | /** |
| 123 | 123 | * Resolves request into the current page |
| 124 | 124 | * |
| 125 | - * @return Page|ResponseInterface |
|
| 125 | + * @return Page |
|
| 126 | 126 | */ |
| 127 | 127 | protected function resolveCurrentPage(Router $router) |
| 128 | 128 | { |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | /** |
| 161 | 161 | * Renders page into output format (HTML) |
| 162 | 162 | * |
| 163 | - * @return string|ResponseInterface |
|
| 163 | + * @return string |
|
| 164 | 164 | */ |
| 165 | 165 | protected function renderHtml(Page $page) |
| 166 | 166 | { |
@@ -61,7 +61,7 @@ |
||
| 61 | 61 | /** |
| 62 | 62 | * method to render the page/template |
| 63 | 63 | * |
| 64 | - * @return mixed|string |
|
| 64 | + * @return string |
|
| 65 | 65 | */ |
| 66 | 66 | public function render() |
| 67 | 67 | { |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | /** @var string slug */ |
| 21 | 21 | const SLUG_PREFIX = '-phile.phpFastCache.slug-'; |
| 22 | 22 | |
| 23 | - const SLUG = ['{', '}' , '(', ')','/' , '\\' , '@', ':']; |
|
| 23 | + const SLUG = ['{', '}', '(', ')', '/', '\\', '@', ':']; |
|
| 24 | 24 | |
| 25 | 25 | /** |
| 26 | 26 | * @var CacheInterface the cache engine |