@@ -44,7 +44,7 @@ |
||
44 | 44 | |
45 | 45 | protected function escape(string $string): string |
46 | 46 | { |
47 | - return htmlspecialchars($string, ENT_XML1 | ENT_COMPAT, 'UTF-8'); |
|
47 | + return htmlspecialchars($string, ENT_XML1|ENT_COMPAT, 'UTF-8'); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | protected function addChild(SimpleXMLElement $element, string $name, string $value): SimpleXMLElement |
@@ -49,7 +49,7 @@ |
||
49 | 49 | // Reject any metadata from the global metadata bag that is already present in the page metadata bag. |
50 | 50 | |
51 | 51 | foreach (['links', 'metadata', 'properties', 'generics'] as $type) { |
52 | - $global->$type = array_filter($global->$type, fn (Element $element): bool => ! in_array($element->uniqueKey(), |
|
52 | + $global->$type = array_filter($global->$type, fn (Element $element): bool => !in_array($element->uniqueKey(), |
|
53 | 53 | array_map(fn (Element $element): string => $element->uniqueKey(), $page->metadata->$type) |
54 | 54 | )); |
55 | 55 | } |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | |
21 | 21 | public function line(string $message = ''): self |
22 | 22 | { |
23 | - return $this->write($message . PHP_EOL); |
|
23 | + return $this->write($message.PHP_EOL); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | public function newline(int $count = 1): self |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | } |
55 | 55 | protected function ansi(string $string, string $color): string |
56 | 56 | { |
57 | - return "\033[" . $color . 'm' . $string . "\033[0m"; |
|
57 | + return "\033[".$color.'m'.$string."\033[0m"; |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | protected function black(string $string): string |
@@ -42,6 +42,6 @@ |
||
42 | 42 | */ |
43 | 43 | public function has(string $key): bool |
44 | 44 | { |
45 | - return ! blank($this->data($key)); |
|
45 | + return !blank($this->data($key)); |
|
46 | 46 | } |
47 | 47 | } |
@@ -66,7 +66,7 @@ |
||
66 | 66 | '.gitkeep', |
67 | 67 | ]; |
68 | 68 | |
69 | - if (! in_array(basename($filepath), $protected)) { |
|
69 | + if (!in_array(basename($filepath), $protected)) { |
|
70 | 70 | unlink($filepath); |
71 | 71 | } |
72 | 72 | } |
@@ -51,7 +51,7 @@ |
||
51 | 51 | if (sizeof($this->fileMemory) > 0) { |
52 | 52 | foreach ($this->fileMemory as $file) { |
53 | 53 | if (Filesystem::isDirectory($file)) { |
54 | - if (! in_array($file, ['_site', '_media', '_pages', '_posts', '_docs', 'app', 'config', 'storage', 'vendor', 'node_modules'])) { |
|
54 | + if (!in_array($file, ['_site', '_media', '_pages', '_posts', '_docs', 'app', 'config', 'storage', 'vendor', 'node_modules'])) { |
|
55 | 55 | Filesystem::deleteDirectory($file); |
56 | 56 | } |
57 | 57 | } else { |
@@ -7,7 +7,7 @@ |
||
7 | 7 | use Rector\Set\ValueObject\SetList; |
8 | 8 | use RectorLaravel\Set\LaravelSetList; |
9 | 9 | |
10 | -return static function (RectorConfig $rectorConfig): void { |
|
10 | +return static function(RectorConfig $rectorConfig): void { |
|
11 | 11 | $rectorConfig->paths([__DIR__.'/packages/framework/src']); |
12 | 12 | $rectorConfig->sets([ |
13 | 13 | LaravelSetList::LARAVEL_90, |
@@ -52,7 +52,7 @@ |
||
52 | 52 | |
53 | 53 | public function processInput(): static |
54 | 54 | { |
55 | - $this->output = implode("\n", array_map(function (string $line): string { |
|
55 | + $this->output = implode("\n", array_map(function(string $line): string { |
|
56 | 56 | return $this->expandShortcode($line); |
57 | 57 | }, explode("\n", $this->input))); |
58 | 58 |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | |
35 | 35 | public static function preprocess(string $markdown): string |
36 | 36 | { |
37 | - return implode("\n", array_map(function (string $line): string { |
|
37 | + return implode("\n", array_map(function(string $line): string { |
|
38 | 38 | return str_starts_with(strtolower($line), strtolower('[Blade]:')) |
39 | 39 | ? '<!-- HYDE'.trim(e($line)).' -->' |
40 | 40 | : $line; |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | public function run(): static |
56 | 56 | { |
57 | - $this->output = implode("\n", array_map(function (string $line): string { |
|
57 | + $this->output = implode("\n", array_map(function(string $line): string { |
|
58 | 58 | return $this->lineStartsWithDirective($line) |
59 | 59 | ? $this->processLine($line) |
60 | 60 | : $line; |