@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | case PageType::VOCABULARY->value: |
| 135 | 135 | $layouts = [ |
| 136 | 136 | // "taxonomy/$plural.$format.$ext", // e.g.: taxonomy/tags.html.twig |
| 137 | - "vocabulary.$format.$ext", // e.g.: vocabulary.html.twig |
|
| 137 | + "vocabulary.$format.$ext", // e.g.: vocabulary.html.twig |
|
| 138 | 138 | "_default/vocabulary.$format.$ext", // e.g.: _default/vocabulary.html.twig |
| 139 | 139 | ]; |
| 140 | 140 | if ($page->hasVariable('plural')) { |
@@ -145,9 +145,9 @@ discard block |
||
| 145 | 145 | $layouts = [ |
| 146 | 146 | // "taxonomy/$term.$format.$ext", // e.g.: taxonomy/velo.html.twig |
| 147 | 147 | // "taxonomy/$singular.$format.$ext", // e.g.: taxonomy/tag.html.twig |
| 148 | - "term.$format.$ext", // e.g.: term.html.twig |
|
| 149 | - "_default/term.$format.$ext", // e.g.: _default/term.html.twig |
|
| 150 | - "_default/list.$format.$ext", // e.g.: _default/list.html.twig |
|
| 148 | + "term.$format.$ext", // e.g.: term.html.twig |
|
| 149 | + "_default/term.$format.$ext", // e.g.: _default/term.html.twig |
|
| 150 | + "_default/list.$format.$ext", // e.g.: _default/list.html.twig |
|
| 151 | 151 | ]; |
| 152 | 152 | if ($page->hasVariable('term')) { |
| 153 | 153 | $layouts = array_merge(["taxonomy/{$page->getVariable('term')}.$format.$ext"], $layouts); |
@@ -79,81 +79,81 @@ |
||
| 79 | 79 | ], |
| 80 | 80 | 'output' => [ |
| 81 | 81 | 'formats' => [ |
| 82 | - [ // e.g.: blog/post-1/index.html |
|
| 82 | + [// e.g.: blog/post-1/index.html |
|
| 83 | 83 | 'name' => 'html', |
| 84 | 84 | 'mediatype' => 'text/html', |
| 85 | 85 | 'filename' => 'index', |
| 86 | 86 | 'extension' => 'html', |
| 87 | 87 | ], |
| 88 | - [ // e.g.: blog/atom.xml |
|
| 88 | + [// e.g.: blog/atom.xml |
|
| 89 | 89 | 'name' => 'atom', |
| 90 | 90 | 'mediatype' => 'application/atom+xml', |
| 91 | 91 | 'filename' => 'atom', |
| 92 | 92 | 'extension' => 'xml', |
| 93 | 93 | 'exclude' => ['redirect', 'paginated'], |
| 94 | 94 | ], |
| 95 | - [ // e.g.: blog/rss.xml |
|
| 95 | + [// e.g.: blog/rss.xml |
|
| 96 | 96 | 'name' => 'rss', |
| 97 | 97 | 'mediatype' => 'application/rss+xml', |
| 98 | 98 | 'filename' => 'rss', |
| 99 | 99 | 'extension' => 'xml', |
| 100 | 100 | 'exclude' => ['redirect', 'paginated'], |
| 101 | 101 | ], |
| 102 | - [ // e.g.: blog.json |
|
| 102 | + [// e.g.: blog.json |
|
| 103 | 103 | 'name' => 'json', |
| 104 | 104 | 'mediatype' => 'application/json', |
| 105 | 105 | 'extension' => 'json', |
| 106 | 106 | 'exclude' => ['redirect'], |
| 107 | 107 | ], |
| 108 | - [ // e.g.: blog.xml |
|
| 108 | + [// e.g.: blog.xml |
|
| 109 | 109 | 'name' => 'xml', |
| 110 | 110 | 'mediatype' => 'application/xml', |
| 111 | 111 | 'extension' => 'xml', |
| 112 | 112 | 'exclude' => ['redirect'], |
| 113 | 113 | ], |
| 114 | - [ // e.g.: robots.txt |
|
| 114 | + [// e.g.: robots.txt |
|
| 115 | 115 | 'name' => 'txt', |
| 116 | 116 | 'mediatype' => 'text/plain', |
| 117 | 117 | 'extension' => 'txt', |
| 118 | 118 | 'exclude' => ['redirect'], |
| 119 | 119 | ], |
| 120 | - [ // e.g.: blog/post-1/amp/index.html |
|
| 120 | + [// e.g.: blog/post-1/amp/index.html |
|
| 121 | 121 | 'name' => 'amp', |
| 122 | 122 | 'mediatype' => 'text/html', |
| 123 | 123 | 'subpath' => 'amp', |
| 124 | 124 | 'filename' => 'index', |
| 125 | 125 | 'extension' => 'html', |
| 126 | 126 | ], |
| 127 | - [ // e.g.: sw.js |
|
| 127 | + [// e.g.: sw.js |
|
| 128 | 128 | 'name' => 'js', |
| 129 | 129 | 'mediatype' => 'application/javascript', |
| 130 | 130 | 'extension' => 'js', |
| 131 | 131 | ], |
| 132 | - [ // e.g.: manifest.webmanifest |
|
| 132 | + [// e.g.: manifest.webmanifest |
|
| 133 | 133 | 'name' => 'webmanifest', |
| 134 | 134 | 'mediatype' => 'application/manifest+json', |
| 135 | 135 | 'extension' => 'webmanifest', |
| 136 | 136 | ], |
| 137 | - [ // e.g.: atom.xsl |
|
| 137 | + [// e.g.: atom.xsl |
|
| 138 | 138 | 'name' => 'xsl', |
| 139 | 139 | 'mediatype' => 'application/xml', |
| 140 | 140 | 'extension' => 'xsl', |
| 141 | 141 | ], |
| 142 | - [ // e.g.: blog/feed.json |
|
| 142 | + [// e.g.: blog/feed.json |
|
| 143 | 143 | 'name' => 'jsonfeed', |
| 144 | 144 | 'mediatype' => 'application/json', |
| 145 | 145 | 'filename' => 'feed', |
| 146 | 146 | 'extension' => 'json', |
| 147 | 147 | 'exclude' => ['redirect', 'paginated'], |
| 148 | 148 | ], |
| 149 | - [ // e.g.: video/oembed.json |
|
| 149 | + [// e.g.: video/oembed.json |
|
| 150 | 150 | 'name' => 'oembed', |
| 151 | 151 | 'mediatype' => 'application/json+oembed', |
| 152 | 152 | 'filename' => 'oembed', |
| 153 | 153 | 'extension' => 'json', |
| 154 | 154 | 'exclude' => ['redirect', 'paginated'], |
| 155 | 155 | ], |
| 156 | - [ // e.g.: video/embed.html |
|
| 156 | + [// e.g.: video/embed.html |
|
| 157 | 157 | 'name' => 'embed', |
| 158 | 158 | 'mediatype' => 'text/html', |
| 159 | 159 | 'filename' => 'embed', |
@@ -119,7 +119,7 @@ |
||
| 119 | 119 | /** |
| 120 | 120 | * Adds navigation (next and prev) to each pages of a section. |
| 121 | 121 | */ |
| 122 | - protected function addNavigationLinks(PagesCollection $pages, string|null $sortBy = null, bool $circular = false): void |
|
| 122 | + protected function addNavigationLinks(PagesCollection $pages, string | null $sortBy = null, bool $circular = false): void |
|
| 123 | 123 | { |
| 124 | 124 | $pagesAsArray = $pages->toArray(); |
| 125 | 125 | if ($sortBy === null || $sortBy == 'date' || $sortBy == 'updated') { |
@@ -302,7 +302,7 @@ discard block |
||
| 302 | 302 | * |
| 303 | 303 | * @return Asset |
| 304 | 304 | */ |
| 305 | - public function asset($path, array|null $options = null): Asset |
|
| 305 | + public function asset($path, array | null $options = null): Asset |
|
| 306 | 306 | { |
| 307 | 307 | if (!\is_string($path) && !\is_array($path)) { |
| 308 | 308 | throw new RuntimeException(\sprintf('Argument of "%s()" must a string or an array.', \Cecil\Util::formatMethodName(__METHOD__))); |
@@ -533,7 +533,7 @@ discard block |
||
| 533 | 533 | * |
| 534 | 534 | * @throws RuntimeException |
| 535 | 535 | */ |
| 536 | - public function html(array $context, Asset|array $assets, array $attributes = [], array $options = []): string |
|
| 536 | + public function html(array $context, Asset | array $assets, array $attributes = [], array $options = []): string |
|
| 537 | 537 | { |
| 538 | 538 | $html = array(); |
| 539 | 539 | if (!\is_array($assets)) { |
@@ -1066,7 +1066,7 @@ discard block |
||
| 1066 | 1066 | /** |
| 1067 | 1067 | * Hashing an object, an array or a string (with algo, md5 by default). |
| 1068 | 1068 | */ |
| 1069 | - public function hash(object|array|string $data, $algo = 'md5'): string |
|
| 1069 | + public function hash(object | array | string $data, $algo = 'md5'): string |
|
| 1070 | 1070 | { |
| 1071 | 1071 | switch (\gettype($data)) { |
| 1072 | 1072 | case 'object': |