@@ -13,6 +13,6 @@ |
||
| 13 | 13 | { |
| 14 | 14 | public static function escape(string $string): string |
| 15 | 15 | { |
| 16 | - return htmlspecialchars($string, ENT_XML1 | ENT_COMPAT, 'UTF-8'); |
|
| 16 | + return htmlspecialchars($string, ENT_XML1|ENT_COMPAT, 'UTF-8'); |
|
| 17 | 17 | } |
| 18 | 18 | } |
@@ -53,7 +53,7 @@ |
||
| 53 | 53 | |
| 54 | 54 | public function generate(): static |
| 55 | 55 | { |
| 56 | - Route::all()->each(function (Route $route): void { |
|
| 56 | + Route::all()->each(function(Route $route): void { |
|
| 57 | 57 | $this->addRoute($route); |
| 58 | 58 | }); |
| 59 | 59 | |