Passed
Push — master ( 32dd3a...b6a4c4 )
by Caen
03:02 queued 12s
created
packages/framework/src/Support/Helpers/XML.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,6 +13,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
packages/framework/src/Framework/Services/SitemapService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.