- getMatter |
+ getMatter |
100.00% covered (success)
@@ -728,16 +728,16 @@
45 | |
46 | public function __construct(CoreDataObject $pageData, string $title) |
47 | { |
- 48 | $this->matter = $pageData->matter; |
- 49 | $this->identifier = $pageData->identifier; |
- 50 | $this->pageClass = $pageData->pageClass; |
- 51 | $this->routeKey = $pageData->routeKey; |
- 52 | $this->title = $title; |
+ 48 | $this->matter = $pageData->matter; |
+ 49 | $this->identifier = $pageData->identifier; |
+ 50 | $this->pageClass = $pageData->pageClass; |
+ 51 | $this->routeKey = $pageData->routeKey; |
+ 52 | $this->title = $title; |
53 | |
- 54 | $this->label = $this->makeLabel(); |
- 55 | $this->group = $this->makeGroup(); |
- 56 | $this->hidden = $this->makeHidden(); |
- 57 | $this->priority = $this->makePriority(); |
+ 54 | $this->label = $this->makeLabel(); |
+ 55 | $this->group = $this->makeGroup(); |
+ 56 | $this->hidden = $this->makeHidden(); |
+ 57 | $this->priority = $this->makePriority(); |
58 | } |
59 | |
60 | |
@@ -755,180 +755,183 @@
72 | |
73 | protected function makeLabel(): ?string |
74 | { |
- 75 | return $this->searchForLabelInFrontMatter() |
- 76 | ?? $this->searchForLabelInConfig() |
- 77 | ?? $this->getMatter('title') |
- 78 | ?? $this->title; |
+ 75 | return $this->searchForLabelInFrontMatter() |
+ 76 | ?? $this->searchForLabelInConfig() |
+ 77 | ?? $this->getMatter('title') |
+ 78 | ?? $this->title; |
79 | } |
80 | |
81 | protected function makeGroup(): ?string |
82 | { |
- 83 | if ($this->pageIsInSubdirectory() && $this->canUseSubdirectoryForGroups()) { |
+ 83 | if ($this->pageIsInSubdirectory() && $this->canUseSubdirectoryForGroups()) { |
84 | return $this->getSubdirectoryName(); |
85 | } |
86 | |
- 87 | return $this->searchForGroupInFrontMatter() ?? $this->defaultGroup(); |
+ 87 | return $this->searchForGroupInFrontMatter() ?? $this->defaultGroup(); |
88 | } |
89 | |
90 | protected function makeHidden(): bool |
91 | { |
- 92 | return $this->isInstanceOf(MarkdownPost::class) |
- 93 | || $this->searchForHiddenInFrontMatter() |
- 94 | || $this->isPageHiddenInNavigationConfiguration() |
- 95 | || $this->isNonDocumentationPageInHiddenSubdirectory(); |
+ 92 | return $this->isInstanceOf(MarkdownPost::class) |
+ 93 | || $this->searchForHiddenInFrontMatter() |
+ 94 | || $this->isPageHiddenInNavigationConfiguration() |
+ 95 | || $this->isNonDocumentationPageInHiddenSubdirectory(); |
96 | } |
97 | |
98 | protected function makePriority(): int |
99 | { |
- 100 | return $this->searchForPriorityInFrontMatter() |
- 101 | ?? $this->searchForPriorityInConfigs() |
- 102 | ?? self::FALLBACK_PRIORITY; |
+ 100 | return $this->searchForPriorityInFrontMatter() |
+ 101 | ?? $this->searchForPriorityInConfigs() |
+ 102 | ?? self::FALLBACK_PRIORITY; |
103 | } |
104 | |
105 | private function searchForLabelInFrontMatter(): ?string |
106 | { |
- 107 | return $this->getMatter('navigation.label') |
- 108 | ?? $this->getMatter('navigation.title'); |
+ 107 | return $this->getMatter('navigation.label') |
+ 108 | ?? $this->getMatter('navigation.title'); |
109 | } |
110 | |
111 | private function searchForGroupInFrontMatter(): ?string |
112 | { |
- 113 | return $this->getMatter('navigation.group') |
- 114 | ?? $this->getMatter('navigation.category'); |
+ 113 | return $this->getMatter('navigation.group') |
+ 114 | ?? $this->getMatter('navigation.category'); |
115 | } |
116 | |
117 | private function searchForHiddenInFrontMatter(): ?bool |
118 | { |
- 119 | return $this->getMatter('navigation.hidden') |
- 120 | ?? $this->invert($this->getMatter('navigation.visible')); |
+ 119 | return $this->getMatter('navigation.hidden') |
+ 120 | ?? $this->invert($this->getMatter('navigation.visible')); |
121 | } |
122 | |
123 | private function isPageHiddenInNavigationConfiguration(): ?bool |
124 | { |
- 125 | return in_array($this->routeKey, Config::getArray('hyde.navigation.exclude', ['404'])); |
+ 125 | return in_array($this->routeKey, Config::getArray('hyde.navigation.exclude', ['404'])); |
126 | } |
127 | |
128 | private function isNonDocumentationPageInHiddenSubdirectory(): bool |
129 | { |
- 130 | return ! $this->isInstanceOf(DocumentationPage::class) |
- 131 | && $this->pageIsInSubdirectory() |
- 132 | && $this->getSubdirectoryConfiguration() === 'hidden' |
- 133 | && basename($this->identifier) !== 'index'; |
+ 130 | return ! $this->isInstanceOf(DocumentationPage::class) |
+ 131 | && $this->pageIsInSubdirectory() |
+ 132 | && $this->getSubdirectoryConfiguration() === 'hidden' |
+ 133 | && basename($this->identifier) !== 'index'; |
134 | } |
135 | |
136 | private function searchForPriorityInFrontMatter(): ?int |
137 | { |
- 138 | return $this->getMatter('navigation.priority') |
- 139 | ?? $this->getMatter('navigation.order'); |
+ 138 | return $this->getMatter('navigation.priority') |
+ 139 | ?? $this->getMatter('navigation.order'); |
140 | } |
141 | |
142 | private function searchForLabelInConfig(): ?string |
143 | { |
144 | |
- 145 | $config = Config::getArray('hyde.navigation.labels', [ |
- 146 | 'index' => 'Home', |
- 147 | DocumentationPage::homeRouteName() => 'Docs', |
- 148 | ]); |
+ 145 | $config = Config::getArray('hyde.navigation.labels', [ |
+ 146 | 'index' => 'Home', |
+ 147 | DocumentationPage::homeRouteName() => 'Docs', |
+ 148 | ]); |
149 | |
- 150 | return $config[$this->routeKey] ?? null; |
+ 150 | return $config[$this->routeKey] ?? null; |
151 | } |
152 | |
153 | private function searchForPriorityInConfigs(): ?int |
154 | { |
- 155 | return $this->isInstanceOf(DocumentationPage::class) |
- 156 | ? $this->searchForPriorityInSidebarConfig() |
- 157 | : $this->searchForPriorityInNavigationConfig(); |
+ 155 | return $this->isInstanceOf(DocumentationPage::class) |
+ 156 | ? $this->searchForPriorityInSidebarConfig() |
+ 157 | : $this->searchForPriorityInNavigationConfig(); |
158 | } |
159 | |
160 | private function searchForPriorityInSidebarConfig(): ?int |
161 | { |
162 | |
- 163 | $config = Config::getArray('docs.sidebar_order', []); |
+ 163 | $config = Config::getArray('docs.sidebar_order', []); |
164 | |
- 165 | return $this->parseNavigationPriorityConfig($config); |
- 166 | } |
- 167 | |
- 168 | private function searchForPriorityInNavigationConfig(): ?int |
- 169 | { |
- 170 | |
- 171 | $config = Config::getArray('hyde.navigation.order', [ |
- 172 | 'index' => 0, |
- 173 | 'posts' => 10, |
- 174 | 'docs/index' => 100, |
- 175 | ]); |
- 176 | |
- 177 | return $this->parseNavigationPriorityConfig($config); |
- 178 | } |
- 179 | |
- 180 | |
- 181 | private function parseNavigationPriorityConfig(array $config): ?int |
- 182 | { |
- 183 | $pageKey = $this->isInstanceOf(DocumentationPage::class) |
- 184 | ? $this->identifier |
- 185 | : $this->routeKey; |
- 186 | |
- 187 | |
- 188 | if (! array_key_exists($pageKey, $config)) { |
- 189 | |
- 190 | |
- 191 | |
- 192 | |
- 193 | return $this->offset( |
- 194 | array_flip($config)[$pageKey] ?? null, |
- 195 | self::CONFIG_OFFSET |
- 196 | ); |
- 197 | } |
- 198 | |
- 199 | return $config[$pageKey] ?? null; |
- 200 | } |
+ 165 | return |
+ 166 | |
+ 167 | $this->parseNavigationPriorityConfig($config, 'routeKey') |
+ 168 | |
+ 169 | |
+ 170 | ?? $this->parseNavigationPriorityConfig($config, 'identifier'); |
+ 171 | } |
+ 172 | |
+ 173 | private function searchForPriorityInNavigationConfig(): ?int |
+ 174 | { |
+ 175 | |
+ 176 | $config = Config::getArray('hyde.navigation.order', [ |
+ 177 | 'index' => 0, |
+ 178 | 'posts' => 10, |
+ 179 | 'docs/index' => 100, |
+ 180 | ]); |
+ 181 | |
+ 182 | return $this->parseNavigationPriorityConfig($config, 'routeKey'); |
+ 183 | } |
+ 184 | |
+ 185 | |
+ 186 | private function parseNavigationPriorityConfig(array $config, string $pageKeyName): ?int |
+ 187 | { |
+ 188 | $pageKey = $this->{$pageKeyName}; |
+ 189 | |
+ 190 | |
+ 191 | if (! array_key_exists($pageKey, $config)) { |
+ 192 | |
+ 193 | |
+ 194 | |
+ 195 | |
+ 196 | return $this->offset( |
+ 197 | array_flip($config)[$pageKey] ?? null, |
+ 198 | self::CONFIG_OFFSET |
+ 199 | ); |
+ 200 | } |
201 | |
- 202 | private function canUseSubdirectoryForGroups(): bool |
- 203 | { |
- 204 | return $this->getSubdirectoryConfiguration() === 'dropdown' |
- 205 | || $this->isInstanceOf(DocumentationPage::class); |
- 206 | } |
- 207 | |
- 208 | private function defaultGroup(): ?string |
- 209 | { |
- 210 | return $this->isInstanceOf(DocumentationPage::class) ? 'other' : null; |
- 211 | } |
- 212 | |
- 213 | private function pageIsInSubdirectory(): bool |
- 214 | { |
- 215 | return Str::contains($this->identifier, '/'); |
- 216 | } |
- 217 | |
- 218 | private function getSubdirectoryName(): string |
- 219 | { |
- 220 | return Str::before($this->identifier, '/'); |
- 221 | } |
- 222 | |
- 223 | protected function getSubdirectoryConfiguration(): string |
- 224 | { |
- 225 | return Config::getString('hyde.navigation.subdirectories', 'hidden'); |
- 226 | } |
- 227 | |
- 228 | |
- 229 | protected function isInstanceOf(string $class): bool |
- 230 | { |
- 231 | return is_a($this->pageClass, $class, true); |
- 232 | } |
- 233 | |
- 234 | protected function invert(?bool $value): ?bool |
- 235 | { |
- 236 | return $value === null ? null : ! $value; |
- 237 | } |
- 238 | |
- 239 | protected function offset(?int $value, int $offset): ?int |
- 240 | { |
- 241 | return $value === null ? null : $value + $offset; |
- 242 | } |
- 243 | |
- 244 | protected function getMatter(string $key): string|null|int|bool |
- 245 | { |
- 246 | return $this->matter->get($key); |
- 247 | } |
- 248 | } |
+ 202 | return $config[$pageKey] ?? null; |
+ 203 | } |
+ 204 | |
+ 205 | private function canUseSubdirectoryForGroups(): bool |
+ 206 | { |
+ 207 | return $this->getSubdirectoryConfiguration() === 'dropdown' |
+ 208 | || $this->isInstanceOf(DocumentationPage::class); |
+ 209 | } |
+ 210 | |
+ 211 | private function defaultGroup(): ?string |
+ 212 | { |
+ 213 | return $this->isInstanceOf(DocumentationPage::class) ? 'other' : null; |
+ 214 | } |
+ 215 | |
+ 216 | private function pageIsInSubdirectory(): bool |
+ 217 | { |
+ 218 | return Str::contains($this->identifier, '/'); |
+ 219 | } |
+ 220 | |
+ 221 | private function getSubdirectoryName(): string |
+ 222 | { |
+ 223 | return Str::before($this->identifier, '/'); |
+ 224 | } |
+ 225 | |
+ 226 | protected function getSubdirectoryConfiguration(): string |
+ 227 | { |
+ 228 | return Config::getString('hyde.navigation.subdirectories', 'hidden'); |
+ 229 | } |
+ 230 | |
+ 231 | |
+ 232 | protected function isInstanceOf(string $class): bool |
+ 233 | { |
+ 234 | return is_a($this->pageClass, $class, true); |
+ 235 | } |
+ 236 | |
+ 237 | protected function invert(?bool $value): ?bool |
+ 238 | { |
+ 239 | return $value === null ? null : ! $value; |
+ 240 | } |
+ 241 | |
+ 242 | protected function offset(?int $value, int $offset): ?int |
+ 243 | { |
+ 244 | return $value === null ? null : $value + $offset; |
+ 245 | } |
+ 246 | |
+ 247 | protected function getMatter(string $key): string|null|int|bool |
+ 248 | { |
+ 249 | return $this->matter->get($key); |
+ 250 | } |
+ 251 | } |
@@ -939,7 +942,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Factories/dashboard.html b/master/coverage/framework/src/Framework/Factories/dashboard.html
index 8cae2aaf5da..17d5236c8ca 100644
--- a/master/coverage/framework/src/Framework/Factories/dashboard.html
+++ b/master/coverage/framework/src/Framework/Factories/dashboard.html
@@ -139,7 +139,7 @@ Project Risks
@@ -226,7 +226,7 @@ Project Risks
chart.yAxis.axisLabel('Cyclomatic Complexity');
d3.select('#classComplexity svg')
- .datum(getComplexityData([[100,13," Hyde\\Framework\\Factories\\BlogPostDataFactory<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject<\/a>"],[100,0,"Hyde\\Framework\\Factories\\Concerns\\PageDataFactory<\/a>"],[100,10,"Hyde\\Framework\\Factories\\FeaturedImageFactory<\/a>"],[100,13,"Hyde\\Framework\\Factories\\HydePageDataFactory<\/a>"],[100,41,"Hyde\\Framework\\Factories\\NavigationDataFactory<\/a>"],[100,5,"Hyde\\Framework\\Factories\\Concerns\\HasFactory<\/a>"]], 'Class Complexity'))
+ .datum(getComplexityData([[100,13,"Hyde\\Framework\\Factories\\BlogPostDataFactory<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject<\/a>"],[100,0,"Hyde\\Framework\\Factories\\Concerns\\PageDataFactory<\/a>"],[100,10,"Hyde\\Framework\\Factories\\FeaturedImageFactory<\/a>"],[100,13,"Hyde\\Framework\\Factories\\HydePageDataFactory<\/a>"],[100,40,"Hyde\\Framework\\Factories\\NavigationDataFactory<\/a>"],[100,5,"Hyde\\Framework\\Factories\\Concerns\\HasFactory<\/a>"]], 'Class Complexity'))
.transition()
.duration(500)
.call(chart);
@@ -250,7 +250,7 @@ Project Risks
chart.yAxis.axisLabel('Method Complexity');
d3.select('#methodComplexity svg')
- .datum(getComplexityData([[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeDescription<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeCategory<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeDate<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeAuthor<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeImage<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::getTruncatedMarkdown<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::getMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject::toArray<\/a>"],[100,0,"Hyde\\Framework\\Factories\\Concerns\\PageDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::make<\/a>"],[100,3,"Hyde\\Framework\\Factories\\FeaturedImageFactory::makeSource<\/a>"],[100,2,"Hyde\\Framework\\Factories\\FeaturedImageFactory::normalizeLocalImagePath<\/a>"],[100,2,"Hyde\\Framework\\Factories\\FeaturedImageFactory::getStringMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::makeTitle<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::makeNavigation<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleForPage<\/a>"],[100,4,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleFromMarkdownHeadings<\/a>"],[100,3,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleFromParentIdentifier<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::getMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeLabel<\/a>"],[100,3,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeGroup<\/a>"],[100,4,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeHidden<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::makePriority<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForLabelInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForGroupInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForHiddenInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::isPageHiddenInNavigationConfiguration<\/a>"],[100,4,"Hyde\\Framework\\Factories\\NavigationDataFactory::isNonDocumentationPageInHiddenSubdirectory<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForLabelInConfig<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInConfigs<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInSidebarConfig<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInNavigationConfig<\/a>"],[100,3,"Hyde\\Framework\\Factories\\NavigationDataFactory::parseNavigationPriorityConfig<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::canUseSubdirectoryForGroups<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::defaultGroup<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::pageIsInSubdirectory<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getSubdirectoryName<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getSubdirectoryConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::isInstanceOf<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::invert<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::offset<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::toCoreDataObject<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::constructFactoryData<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::assignFactoryData<\/a>"]], 'Method Complexity'))
+ .datum(getComplexityData([[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeDescription<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeCategory<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeDate<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeAuthor<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeImage<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::getTruncatedMarkdown<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::getMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject::toArray<\/a>"],[100,0,"Hyde\\Framework\\Factories\\Concerns\\PageDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::make<\/a>"],[100,3,"Hyde\\Framework\\Factories\\FeaturedImageFactory::makeSource<\/a>"],[100,2,"Hyde\\Framework\\Factories\\FeaturedImageFactory::normalizeLocalImagePath<\/a>"],[100,2,"Hyde\\Framework\\Factories\\FeaturedImageFactory::getStringMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::makeTitle<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::makeNavigation<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleForPage<\/a>"],[100,4,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleFromMarkdownHeadings<\/a>"],[100,3,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleFromParentIdentifier<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::getMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeLabel<\/a>"],[100,3,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeGroup<\/a>"],[100,4,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeHidden<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::makePriority<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForLabelInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForGroupInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForHiddenInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::isPageHiddenInNavigationConfiguration<\/a>"],[100,4,"Hyde\\Framework\\Factories\\NavigationDataFactory::isNonDocumentationPageInHiddenSubdirectory<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForLabelInConfig<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInConfigs<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInSidebarConfig<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInNavigationConfig<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::parseNavigationPriorityConfig<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::canUseSubdirectoryForGroups<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::defaultGroup<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::pageIsInSubdirectory<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getSubdirectoryName<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getSubdirectoryConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::isInstanceOf<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::invert<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::offset<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::toCoreDataObject<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::constructFactoryData<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::assignFactoryData<\/a>"]], 'Method Complexity'))
.transition()
.duration(500)
.call(chart);
diff --git a/master/coverage/framework/src/Framework/Factories/index.html b/master/coverage/framework/src/Framework/Factories/index.html
index ab99e148009..59283960d81 100644
--- a/master/coverage/framework/src/Framework/Factories/index.html
+++ b/master/coverage/framework/src/Framework/Factories/index.html
@@ -54,7 +54,7 @@
|
100.00% |
- 186 / 186 |
+ 188 / 188 |
100.00% covered (success)
@@ -194,7 +194,7 @@
|
100.00% |
- 77 / 77 |
+ 79 / 79 |
diff --git a/master/coverage/framework/src/Framework/Features/Blogging/Models/index.html b/master/coverage/framework/src/Framework/Features/Blogging/Models/index.html
index 045396556df..1fb347a1152 100644
--- a/master/coverage/framework/src/Framework/Features/Blogging/Models/index.html
+++ b/master/coverage/framework/src/Framework/Features/Blogging/Models/index.html
@@ -144,7 +144,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Blogging/dashboard.html b/master/coverage/framework/src/Framework/Features/Blogging/dashboard.html
index d4cb437a154..86e49a10ef1 100644
--- a/master/coverage/framework/src/Framework/Features/Blogging/dashboard.html
+++ b/master/coverage/framework/src/Framework/Features/Blogging/dashboard.html
@@ -140,7 +140,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Framework/Features/Blogging/index.html b/master/coverage/framework/src/Framework/Features/Blogging/index.html
index c937805defe..de2fc5e9bda 100644
--- a/master/coverage/framework/src/Framework/Features/Blogging/index.html
+++ b/master/coverage/framework/src/Framework/Features/Blogging/index.html
@@ -115,7 +115,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/BuildTasks/BuildTask.php.html b/master/coverage/framework/src/Framework/Features/BuildTasks/BuildTask.php.html
index 6c2e96783c7..615e00c777f 100644
--- a/master/coverage/framework/src/Framework/Features/BuildTasks/BuildTask.php.html
+++ b/master/coverage/framework/src/Framework/Features/BuildTasks/BuildTask.php.html
@@ -413,7 +413,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/BuildTasks/PostBuildTask.php.html b/master/coverage/framework/src/Framework/Features/BuildTasks/PostBuildTask.php.html
index af0dd160076..adcd744f363 100644
--- a/master/coverage/framework/src/Framework/Features/BuildTasks/PostBuildTask.php.html
+++ b/master/coverage/framework/src/Framework/Features/BuildTasks/PostBuildTask.php.html
@@ -100,7 +100,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/BuildTasks/PreBuildTask.php.html b/master/coverage/framework/src/Framework/Features/BuildTasks/PreBuildTask.php.html
index ec5d3d31408..46fe8fb7468 100644
--- a/master/coverage/framework/src/Framework/Features/BuildTasks/PreBuildTask.php.html
+++ b/master/coverage/framework/src/Framework/Features/BuildTasks/PreBuildTask.php.html
@@ -100,7 +100,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/BuildTasks/dashboard.html b/master/coverage/framework/src/Framework/Features/BuildTasks/dashboard.html
index 9849bbd38b6..0f25776f20e 100644
--- a/master/coverage/framework/src/Framework/Features/BuildTasks/dashboard.html
+++ b/master/coverage/framework/src/Framework/Features/BuildTasks/dashboard.html
@@ -140,7 +140,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Framework/Features/BuildTasks/index.html b/master/coverage/framework/src/Framework/Features/BuildTasks/index.html
index 1b1e6594476..8e43d0d80e8 100644
--- a/master/coverage/framework/src/Framework/Features/BuildTasks/index.html
+++ b/master/coverage/framework/src/Framework/Features/BuildTasks/index.html
@@ -141,7 +141,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Documentation/DocumentationSearchPage.php.html b/master/coverage/framework/src/Framework/Features/Documentation/DocumentationSearchPage.php.html
index 919e73d9c07..c343ff32626 100644
--- a/master/coverage/framework/src/Framework/Features/Documentation/DocumentationSearchPage.php.html
+++ b/master/coverage/framework/src/Framework/Features/Documentation/DocumentationSearchPage.php.html
@@ -286,7 +286,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Documentation/SemanticDocumentationArticle.php.html b/master/coverage/framework/src/Framework/Features/Documentation/SemanticDocumentationArticle.php.html
index 3badd25d872..71337ff3cf5 100644
--- a/master/coverage/framework/src/Framework/Features/Documentation/SemanticDocumentationArticle.php.html
+++ b/master/coverage/framework/src/Framework/Features/Documentation/SemanticDocumentationArticle.php.html
@@ -589,7 +589,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Documentation/dashboard.html b/master/coverage/framework/src/Framework/Features/Documentation/dashboard.html
index a891465ddd5..ae0b21ca517 100644
--- a/master/coverage/framework/src/Framework/Features/Documentation/dashboard.html
+++ b/master/coverage/framework/src/Framework/Features/Documentation/dashboard.html
@@ -140,7 +140,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Framework/Features/Documentation/index.html b/master/coverage/framework/src/Framework/Features/Documentation/index.html
index f6b62220047..ff50ab8d6a3 100644
--- a/master/coverage/framework/src/Framework/Features/Documentation/index.html
+++ b/master/coverage/framework/src/Framework/Features/Documentation/index.html
@@ -143,7 +143,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Metadata/Elements/LinkElement.php.html b/master/coverage/framework/src/Framework/Features/Metadata/Elements/LinkElement.php.html
index 8dbd9b22a58..e8d50bc165c 100644
--- a/master/coverage/framework/src/Framework/Features/Metadata/Elements/LinkElement.php.html
+++ b/master/coverage/framework/src/Framework/Features/Metadata/Elements/LinkElement.php.html
@@ -255,7 +255,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Metadata/Elements/MetadataElement.php.html b/master/coverage/framework/src/Framework/Features/Metadata/Elements/MetadataElement.php.html
index 97c3abf75af..282da32fb3f 100644
--- a/master/coverage/framework/src/Framework/Features/Metadata/Elements/MetadataElement.php.html
+++ b/master/coverage/framework/src/Framework/Features/Metadata/Elements/MetadataElement.php.html
@@ -219,7 +219,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Metadata/Elements/OpenGraphElement.php.html b/master/coverage/framework/src/Framework/Features/Metadata/Elements/OpenGraphElement.php.html
index cdc42119755..1b587d3c649 100644
--- a/master/coverage/framework/src/Framework/Features/Metadata/Elements/OpenGraphElement.php.html
+++ b/master/coverage/framework/src/Framework/Features/Metadata/Elements/OpenGraphElement.php.html
@@ -248,7 +248,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Metadata/Elements/dashboard.html b/master/coverage/framework/src/Framework/Features/Metadata/Elements/dashboard.html
index d5ba3e6f6b8..3ef8ab07ad0 100644
--- a/master/coverage/framework/src/Framework/Features/Metadata/Elements/dashboard.html
+++ b/master/coverage/framework/src/Framework/Features/Metadata/Elements/dashboard.html
@@ -141,7 +141,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Framework/Features/Metadata/Elements/index.html b/master/coverage/framework/src/Framework/Features/Metadata/Elements/index.html
index 542be7d3db7..7ca6dc7fd1c 100644
--- a/master/coverage/framework/src/Framework/Features/Metadata/Elements/index.html
+++ b/master/coverage/framework/src/Framework/Features/Metadata/Elements/index.html
@@ -172,7 +172,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Metadata/GlobalMetadataBag.php.html b/master/coverage/framework/src/Framework/Features/Metadata/GlobalMetadataBag.php.html
index dca19f9efcb..fc042749927 100644
--- a/master/coverage/framework/src/Framework/Features/Metadata/GlobalMetadataBag.php.html
+++ b/master/coverage/framework/src/Framework/Features/Metadata/GlobalMetadataBag.php.html
@@ -224,7 +224,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Metadata/MetadataBag.php.html b/master/coverage/framework/src/Framework/Features/Metadata/MetadataBag.php.html
index 443b67c8e51..b67df863304 100644
--- a/master/coverage/framework/src/Framework/Features/Metadata/MetadataBag.php.html
+++ b/master/coverage/framework/src/Framework/Features/Metadata/MetadataBag.php.html
@@ -367,7 +367,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Metadata/MetadataElementContract.php.html b/master/coverage/framework/src/Framework/Features/Metadata/MetadataElementContract.php.html
index e86c856113d..e68a8a0b3bf 100644
--- a/master/coverage/framework/src/Framework/Features/Metadata/MetadataElementContract.php.html
+++ b/master/coverage/framework/src/Framework/Features/Metadata/MetadataElementContract.php.html
@@ -103,7 +103,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Metadata/PageMetadataBag.php.html b/master/coverage/framework/src/Framework/Features/Metadata/PageMetadataBag.php.html
index 2f0302bd962..3d6cec8d4b4 100644
--- a/master/coverage/framework/src/Framework/Features/Metadata/PageMetadataBag.php.html
+++ b/master/coverage/framework/src/Framework/Features/Metadata/PageMetadataBag.php.html
@@ -335,7 +335,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Metadata/dashboard.html b/master/coverage/framework/src/Framework/Features/Metadata/dashboard.html
index 1938e5592d0..4fa8f28a04f 100644
--- a/master/coverage/framework/src/Framework/Features/Metadata/dashboard.html
+++ b/master/coverage/framework/src/Framework/Features/Metadata/dashboard.html
@@ -140,7 +140,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Framework/Features/Metadata/index.html b/master/coverage/framework/src/Framework/Features/Metadata/index.html
index c5dffe37665..ec2da8be6f2 100644
--- a/master/coverage/framework/src/Framework/Features/Metadata/index.html
+++ b/master/coverage/framework/src/Framework/Features/Metadata/index.html
@@ -212,7 +212,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Navigation/BaseNavigationMenu.php.html b/master/coverage/framework/src/Framework/Features/Navigation/BaseNavigationMenu.php.html
index 2e3e9e2ffda..a8b9d835edd 100644
--- a/master/coverage/framework/src/Framework/Features/Navigation/BaseNavigationMenu.php.html
+++ b/master/coverage/framework/src/Framework/Features/Navigation/BaseNavigationMenu.php.html
@@ -346,7 +346,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Navigation/DocumentationSidebar.php.html b/master/coverage/framework/src/Framework/Features/Navigation/DocumentationSidebar.php.html
index ef46edd2b5b..971efcba0ae 100644
--- a/master/coverage/framework/src/Framework/Features/Navigation/DocumentationSidebar.php.html
+++ b/master/coverage/framework/src/Framework/Features/Navigation/DocumentationSidebar.php.html
@@ -364,7 +364,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Navigation/DropdownNavItem.php.html b/master/coverage/framework/src/Framework/Features/Navigation/DropdownNavItem.php.html
index a8b3a9ca681..864acfdd91a 100644
--- a/master/coverage/framework/src/Framework/Features/Navigation/DropdownNavItem.php.html
+++ b/master/coverage/framework/src/Framework/Features/Navigation/DropdownNavItem.php.html
@@ -260,7 +260,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Navigation/NavItem.php.html b/master/coverage/framework/src/Framework/Features/Navigation/NavItem.php.html
index 9879dc57ac6..146544f188b 100644
--- a/master/coverage/framework/src/Framework/Features/Navigation/NavItem.php.html
+++ b/master/coverage/framework/src/Framework/Features/Navigation/NavItem.php.html
@@ -522,7 +522,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Navigation/NavigationData.php.html b/master/coverage/framework/src/Framework/Features/Navigation/NavigationData.php.html
index 7485eaa4490..dfadc5c90cb 100644
--- a/master/coverage/framework/src/Framework/Features/Navigation/NavigationData.php.html
+++ b/master/coverage/framework/src/Framework/Features/Navigation/NavigationData.php.html
@@ -237,7 +237,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Navigation/NavigationMenu.php.html b/master/coverage/framework/src/Framework/Features/Navigation/NavigationMenu.php.html
index c961f10fdca..e4a1516bed0 100644
--- a/master/coverage/framework/src/Framework/Features/Navigation/NavigationMenu.php.html
+++ b/master/coverage/framework/src/Framework/Features/Navigation/NavigationMenu.php.html
@@ -348,7 +348,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/Navigation/dashboard.html b/master/coverage/framework/src/Framework/Features/Navigation/dashboard.html
index eca3cbed805..f593cd36579 100644
--- a/master/coverage/framework/src/Framework/Features/Navigation/dashboard.html
+++ b/master/coverage/framework/src/Framework/Features/Navigation/dashboard.html
@@ -140,7 +140,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Framework/Features/Navigation/index.html b/master/coverage/framework/src/Framework/Features/Navigation/index.html
index 57dccc601fc..b1a6de2a4f5 100644
--- a/master/coverage/framework/src/Framework/Features/Navigation/index.html
+++ b/master/coverage/framework/src/Framework/Features/Navigation/index.html
@@ -255,7 +255,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/XmlGenerators/BaseXmlGenerator.php.html b/master/coverage/framework/src/Framework/Features/XmlGenerators/BaseXmlGenerator.php.html
index de6ea80f510..2b6834a2a89 100644
--- a/master/coverage/framework/src/Framework/Features/XmlGenerators/BaseXmlGenerator.php.html
+++ b/master/coverage/framework/src/Framework/Features/XmlGenerators/BaseXmlGenerator.php.html
@@ -356,7 +356,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/XmlGenerators/RssFeedGenerator.php.html b/master/coverage/framework/src/Framework/Features/XmlGenerators/RssFeedGenerator.php.html
index d5820eb0d93..9db0573e9fd 100644
--- a/master/coverage/framework/src/Framework/Features/XmlGenerators/RssFeedGenerator.php.html
+++ b/master/coverage/framework/src/Framework/Features/XmlGenerators/RssFeedGenerator.php.html
@@ -487,7 +487,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/XmlGenerators/SitemapGenerator.php.html b/master/coverage/framework/src/Framework/Features/XmlGenerators/SitemapGenerator.php.html
index 55c807265d0..db4ea0bcb5a 100644
--- a/master/coverage/framework/src/Framework/Features/XmlGenerators/SitemapGenerator.php.html
+++ b/master/coverage/framework/src/Framework/Features/XmlGenerators/SitemapGenerator.php.html
@@ -380,7 +380,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/XmlGenerators/dashboard.html b/master/coverage/framework/src/Framework/Features/XmlGenerators/dashboard.html
index 12cd78bba3e..cbfe8494058 100644
--- a/master/coverage/framework/src/Framework/Features/XmlGenerators/dashboard.html
+++ b/master/coverage/framework/src/Framework/Features/XmlGenerators/dashboard.html
@@ -140,7 +140,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Framework/Features/XmlGenerators/index.html b/master/coverage/framework/src/Framework/Features/XmlGenerators/index.html
index c1e7650564e..277953081a6 100644
--- a/master/coverage/framework/src/Framework/Features/XmlGenerators/index.html
+++ b/master/coverage/framework/src/Framework/Features/XmlGenerators/index.html
@@ -171,7 +171,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Features/dashboard.html b/master/coverage/framework/src/Framework/Features/dashboard.html
index d6a547499a5..42246275cf0 100644
--- a/master/coverage/framework/src/Framework/Features/dashboard.html
+++ b/master/coverage/framework/src/Framework/Features/dashboard.html
@@ -139,7 +139,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Framework/Features/index.html b/master/coverage/framework/src/Framework/Features/index.html
index a6e2ffc4dff..7c487155681 100644
--- a/master/coverage/framework/src/Framework/Features/index.html
+++ b/master/coverage/framework/src/Framework/Features/index.html
@@ -254,7 +254,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/HydeServiceProvider.php.html b/master/coverage/framework/src/Framework/HydeServiceProvider.php.html
index ca20f31cdcc..864e20ce369 100644
--- a/master/coverage/framework/src/Framework/HydeServiceProvider.php.html
+++ b/master/coverage/framework/src/Framework/HydeServiceProvider.php.html
@@ -226,7 +226,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Services/AssetService.php.html b/master/coverage/framework/src/Framework/Services/AssetService.php.html
index 62b32acb5c3..ea0ca13cd06 100644
--- a/master/coverage/framework/src/Framework/Services/AssetService.php.html
+++ b/master/coverage/framework/src/Framework/Services/AssetService.php.html
@@ -395,7 +395,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Services/BuildService.php.html b/master/coverage/framework/src/Framework/Services/BuildService.php.html
index 7ea710a9cb9..de7623585b7 100644
--- a/master/coverage/framework/src/Framework/Services/BuildService.php.html
+++ b/master/coverage/framework/src/Framework/Services/BuildService.php.html
@@ -344,7 +344,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Services/BuildTaskService.php.html b/master/coverage/framework/src/Framework/Services/BuildTaskService.php.html
index bcca22b7d73..91bb5217820 100644
--- a/master/coverage/framework/src/Framework/Services/BuildTaskService.php.html
+++ b/master/coverage/framework/src/Framework/Services/BuildTaskService.php.html
@@ -703,7 +703,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Services/MarkdownService.php.html b/master/coverage/framework/src/Framework/Services/MarkdownService.php.html
index 169a7493e1f..8e9040a5283 100644
--- a/master/coverage/framework/src/Framework/Services/MarkdownService.php.html
+++ b/master/coverage/framework/src/Framework/Services/MarkdownService.php.html
@@ -875,7 +875,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Services/ValidationService.php.html b/master/coverage/framework/src/Framework/Services/ValidationService.php.html
index 2f0fdffa3fd..c721007d670 100644
--- a/master/coverage/framework/src/Framework/Services/ValidationService.php.html
+++ b/master/coverage/framework/src/Framework/Services/ValidationService.php.html
@@ -490,7 +490,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Services/ViewDiffService.php.html b/master/coverage/framework/src/Framework/Services/ViewDiffService.php.html
index 0075160c600..f97def26ecd 100644
--- a/master/coverage/framework/src/Framework/Services/ViewDiffService.php.html
+++ b/master/coverage/framework/src/Framework/Services/ViewDiffService.php.html
@@ -239,7 +239,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Services/dashboard.html b/master/coverage/framework/src/Framework/Services/dashboard.html
index 5e1197e3bc6..27880f561f5 100644
--- a/master/coverage/framework/src/Framework/Services/dashboard.html
+++ b/master/coverage/framework/src/Framework/Services/dashboard.html
@@ -139,7 +139,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Framework/Services/index.html b/master/coverage/framework/src/Framework/Services/index.html
index 20193a23581..123c16dab81 100644
--- a/master/coverage/framework/src/Framework/Services/index.html
+++ b/master/coverage/framework/src/Framework/Services/index.html
@@ -254,7 +254,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Views/Components/BreadcrumbsComponent.php.html b/master/coverage/framework/src/Framework/Views/Components/BreadcrumbsComponent.php.html
index 9c2c82693b7..513b8e3c846 100644
--- a/master/coverage/framework/src/Framework/Views/Components/BreadcrumbsComponent.php.html
+++ b/master/coverage/framework/src/Framework/Views/Components/BreadcrumbsComponent.php.html
@@ -243,7 +243,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Views/Components/LinkComponent.php.html b/master/coverage/framework/src/Framework/Views/Components/LinkComponent.php.html
index 3601397e12f..bc8b2a606d2 100644
--- a/master/coverage/framework/src/Framework/Views/Components/LinkComponent.php.html
+++ b/master/coverage/framework/src/Framework/Views/Components/LinkComponent.php.html
@@ -190,7 +190,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Views/Components/dashboard.html b/master/coverage/framework/src/Framework/Views/Components/dashboard.html
index f7cd85272b6..e299cc37cbe 100644
--- a/master/coverage/framework/src/Framework/Views/Components/dashboard.html
+++ b/master/coverage/framework/src/Framework/Views/Components/dashboard.html
@@ -140,7 +140,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Framework/Views/Components/index.html b/master/coverage/framework/src/Framework/Views/Components/index.html
index c67eb339bf8..f941efb4248 100644
--- a/master/coverage/framework/src/Framework/Views/Components/index.html
+++ b/master/coverage/framework/src/Framework/Views/Components/index.html
@@ -143,7 +143,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/Views/dashboard.html b/master/coverage/framework/src/Framework/Views/dashboard.html
index b31bb72f835..cf7a3dba259 100644
--- a/master/coverage/framework/src/Framework/Views/dashboard.html
+++ b/master/coverage/framework/src/Framework/Views/dashboard.html
@@ -139,7 +139,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Framework/Views/index.html b/master/coverage/framework/src/Framework/Views/index.html
index 9206e277f5b..19add9f72e3 100644
--- a/master/coverage/framework/src/Framework/Views/index.html
+++ b/master/coverage/framework/src/Framework/Views/index.html
@@ -114,7 +114,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Framework/dashboard.html b/master/coverage/framework/src/Framework/dashboard.html
index 97c7b4b3f30..5cba130aaac 100644
--- a/master/coverage/framework/src/Framework/dashboard.html
+++ b/master/coverage/framework/src/Framework/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
@@ -225,7 +225,7 @@ Project Risks
chart.yAxis.axisLabel('Cyclomatic Complexity');
d3.select('#classComplexity svg')
- .datum(getComplexityData([[100,4,"Hyde\\Framework\\Actions\\AnonymousViewCompiler<\/a>"],[100,20,"Hyde\\Framework\\Actions\\BladeMatterParser<\/a>"],[100,2,"Hyde\\Framework\\Actions\\ConvertsArrayToFrontMatter<\/a>"],[100,14,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText<\/a>"],[100,6,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile<\/a>"],[100,19,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile<\/a>"],[100,11,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex<\/a>"],[100,4,"Hyde\\Framework\\Actions\\GeneratesTableOfContents<\/a>"],[100,6,"Hyde\\Framework\\Actions\\MarkdownFileParser<\/a>"],[100,8,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateRssFeed<\/a>"],[100,3,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSearch<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSitemap<\/a>"],[100,9,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory<\/a>"],[100,7,"Hyde\\Framework\\Actions\\SourceFileParser<\/a>"],[100,1,"Hyde\\Framework\\Actions\\StaticPageBuilder<\/a>"],[100,0,"Hyde\\Framework\\Exceptions\\BaseUrlNotSetException<\/a>"],[100,0,"Hyde\\Framework\\Exceptions\\BuildWarning<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\FileConflictException<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\FileNotFoundException<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\RouteNotFoundException<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\UnsupportedPageTypeException<\/a>"],[100,13,"Hyde\\Framework\\Factories\\BlogPostDataFactory<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject<\/a>"],[100,0,"Hyde\\Framework\\Factories\\Concerns\\PageDataFactory<\/a>"],[100,10,"Hyde\\Framework\\Factories\\FeaturedImageFactory<\/a>"],[100,13,"Hyde\\Framework\\Factories\\HydePageDataFactory<\/a>"],[100,41,"Hyde\\Framework\\Factories\\NavigationDataFactory<\/a>"],[100,35,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage<\/a>"],[100,8,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor<\/a>"],[100,11,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask<\/a>"],[100,0,"Hyde\\Framework\\Features\\BuildTasks\\PostBuildTask<\/a>"],[100,0,"Hyde\\Framework\\Features\\BuildTasks\\PreBuildTask<\/a>"],[100,6,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage<\/a>"],[100,22,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle<\/a>"],[100,5,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement<\/a>"],[100,3,"Hyde\\Framework\\Features\\Metadata\\Elements\\MetadataElement<\/a>"],[100,5,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement<\/a>"],[100,7,"Hyde\\Framework\\Features\\Metadata\\GlobalMetadataBag<\/a>"],[100,8,"Hyde\\Framework\\Features\\Metadata\\MetadataBag<\/a>"],[100,14,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag<\/a>"],[100,8,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu<\/a>"],[100,15,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar<\/a>"],[100,4,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem<\/a>"],[100,14,"Hyde\\Framework\\Features\\Navigation\\NavItem<\/a>"],[100,3,"Hyde\\Framework\\Features\\Navigation\\NavigationData<\/a>"],[100,15,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu<\/a>"],[100,6,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator<\/a>"],[100,16,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator<\/a>"],[100,14,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator<\/a>"],[100,2,"Hyde\\Framework\\HydeServiceProvider<\/a>"],[100,11,"Hyde\\Framework\\Services\\AssetService<\/a>"],[100,6,"Hyde\\Framework\\Services\\BuildService<\/a>"],[100,26,"Hyde\\Framework\\Services\\BuildTaskService<\/a>"],[100,41,"Hyde\\Framework\\Services\\MarkdownService<\/a>"],[100,26,"Hyde\\Framework\\Services\\ValidationService<\/a>"],[100,5,"Hyde\\Framework\\Services\\ViewDiffService<\/a>"],[100,7,"Hyde\\Framework\\Views\\Components\\BreadcrumbsComponent<\/a>"],[100,2,"Hyde\\Framework\\Views\\Components\\LinkComponent<\/a>"],[100,5,"Hyde\\Framework\\Concerns\\InteractsWithDirectories<\/a>"],[100,4,"Hyde\\Framework\\Concerns\\InteractsWithFrontMatter<\/a>"],[100,7,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem<\/a>"],[100,5,"Hyde\\Framework\\Concerns\\Internal\\MockableFeatures<\/a>"],[100,16,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter<\/a>"],[100,10,"Hyde\\Framework\\Concerns\\RegistersFileLocations<\/a>"],[100,4,"Hyde\\Framework\\Concerns\\TracksExecutionTime<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\ValidatesExistence<\/a>"],[100,5,"Hyde\\Framework\\Factories\\Concerns\\HasFactory<\/a>"]], 'Class Complexity'))
+ .datum(getComplexityData([[100,4,"Hyde\\Framework\\Actions\\AnonymousViewCompiler<\/a>"],[100,20,"Hyde\\Framework\\Actions\\BladeMatterParser<\/a>"],[100,2,"Hyde\\Framework\\Actions\\ConvertsArrayToFrontMatter<\/a>"],[100,14,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText<\/a>"],[100,6,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile<\/a>"],[100,19,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile<\/a>"],[100,11,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex<\/a>"],[100,4,"Hyde\\Framework\\Actions\\GeneratesTableOfContents<\/a>"],[100,6,"Hyde\\Framework\\Actions\\MarkdownFileParser<\/a>"],[100,8,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateRssFeed<\/a>"],[100,3,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSearch<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSitemap<\/a>"],[100,9,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory<\/a>"],[100,7,"Hyde\\Framework\\Actions\\SourceFileParser<\/a>"],[100,1,"Hyde\\Framework\\Actions\\StaticPageBuilder<\/a>"],[100,0,"Hyde\\Framework\\Exceptions\\BaseUrlNotSetException<\/a>"],[100,0,"Hyde\\Framework\\Exceptions\\BuildWarning<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\FileConflictException<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\FileNotFoundException<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\RouteNotFoundException<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\UnsupportedPageTypeException<\/a>"],[100,13,"Hyde\\Framework\\Factories\\BlogPostDataFactory<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject<\/a>"],[100,0,"Hyde\\Framework\\Factories\\Concerns\\PageDataFactory<\/a>"],[100,10,"Hyde\\Framework\\Factories\\FeaturedImageFactory<\/a>"],[100,13,"Hyde\\Framework\\Factories\\HydePageDataFactory<\/a>"],[100,40,"Hyde\\Framework\\Factories\\NavigationDataFactory<\/a>"],[100,35,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage<\/a>"],[100,8,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor<\/a>"],[100,11,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask<\/a>"],[100,0,"Hyde\\Framework\\Features\\BuildTasks\\PostBuildTask<\/a>"],[100,0,"Hyde\\Framework\\Features\\BuildTasks\\PreBuildTask<\/a>"],[100,6,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage<\/a>"],[100,22,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle<\/a>"],[100,5,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement<\/a>"],[100,3,"Hyde\\Framework\\Features\\Metadata\\Elements\\MetadataElement<\/a>"],[100,5,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement<\/a>"],[100,7,"Hyde\\Framework\\Features\\Metadata\\GlobalMetadataBag<\/a>"],[100,8,"Hyde\\Framework\\Features\\Metadata\\MetadataBag<\/a>"],[100,14,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag<\/a>"],[100,8,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu<\/a>"],[100,15,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar<\/a>"],[100,4,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem<\/a>"],[100,14,"Hyde\\Framework\\Features\\Navigation\\NavItem<\/a>"],[100,3,"Hyde\\Framework\\Features\\Navigation\\NavigationData<\/a>"],[100,15,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu<\/a>"],[100,6,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator<\/a>"],[100,16,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator<\/a>"],[100,14,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator<\/a>"],[100,2,"Hyde\\Framework\\HydeServiceProvider<\/a>"],[100,11,"Hyde\\Framework\\Services\\AssetService<\/a>"],[100,6,"Hyde\\Framework\\Services\\BuildService<\/a>"],[100,26,"Hyde\\Framework\\Services\\BuildTaskService<\/a>"],[100,41,"Hyde\\Framework\\Services\\MarkdownService<\/a>"],[100,26,"Hyde\\Framework\\Services\\ValidationService<\/a>"],[100,5,"Hyde\\Framework\\Services\\ViewDiffService<\/a>"],[100,7,"Hyde\\Framework\\Views\\Components\\BreadcrumbsComponent<\/a>"],[100,2,"Hyde\\Framework\\Views\\Components\\LinkComponent<\/a>"],[100,5,"Hyde\\Framework\\Concerns\\InteractsWithDirectories<\/a>"],[100,4,"Hyde\\Framework\\Concerns\\InteractsWithFrontMatter<\/a>"],[100,7,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem<\/a>"],[100,5,"Hyde\\Framework\\Concerns\\Internal\\MockableFeatures<\/a>"],[100,16,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter<\/a>"],[100,10,"Hyde\\Framework\\Concerns\\RegistersFileLocations<\/a>"],[100,4,"Hyde\\Framework\\Concerns\\TracksExecutionTime<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\ValidatesExistence<\/a>"],[100,5,"Hyde\\Framework\\Factories\\Concerns\\HasFactory<\/a>"]], 'Class Complexity'))
.transition()
.duration(500)
.call(chart);
@@ -249,7 +249,7 @@ Project Risks
chart.yAxis.axisLabel('Method Complexity');
d3.select('#methodComplexity svg')
- .datum(getComplexityData([[100,1,"Hyde\\Framework\\Actions\\AnonymousViewCompiler::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\AnonymousViewCompiler::__construct<\/a>"],[100,2,"Hyde\\Framework\\Actions\\AnonymousViewCompiler::__invoke<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::parseFile<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::parseString<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::get<\/a>"],[100,3,"Hyde\\Framework\\Actions\\BladeMatterParser::parse<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::lineMatchesFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::extractKey<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::extractValue<\/a>"],[100,3,"Hyde\\Framework\\Actions\\BladeMatterParser::getValueWithType<\/a>"],[100,5,"Hyde\\Framework\\Actions\\BladeMatterParser::parseArrayString<\/a>"],[100,2,"Hyde\\Framework\\Actions\\BladeMatterParser::isValueArrayString<\/a>"],[100,2,"Hyde\\Framework\\Actions\\ConvertsArrayToFrontMatter::execute<\/a>"],[100,1,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::execute<\/a>"],[100,2,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::applyRegexTransformations<\/a>"],[100,2,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::applyStringTransformations<\/a>"],[100,5,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::removeTables<\/a>"],[100,3,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::removeBlockquotes<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile::__construct<\/a>"],[100,3,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile::save<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile::toArray<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile::getIdentifier<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::save<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::parseTitle<\/a>"],[100,2,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::fileName<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::normalizeSubdirectory<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::makeOutputPath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::createBladeFile<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::createMarkdownFile<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::createDocumentationFile<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::formatIdentifier<\/a>"],[100,2,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::validateType<\/a>"],[100,3,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::failIfFileCannotBeSaved<\/a>"],[100,2,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::getBladePageContent<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::getMarkdownPageContent<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::__construct<\/a>"],[100,2,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::run<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::generatePageEntry<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::save<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::getSearchContentForDocument<\/a>"],[100,3,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::formatDestination<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::getPath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesTableOfContents::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesTableOfContents::execute<\/a>"],[100,2,"Hyde\\Framework\\Actions\\GeneratesTableOfContents::extractTableOfContents<\/a>"],[100,1,"Hyde\\Framework\\Actions\\MarkdownFileParser::parse<\/a>"],[100,4,"Hyde\\Framework\\Actions\\MarkdownFileParser::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\MarkdownFileParser::get<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::handle<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::hashOutputPath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::hashSourcePath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::getManifestPath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::jsonEncodeOutput<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::setOutput<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateRssFeed::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateRssFeed::printFinishMessage<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSearch::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSearch::printFinishMessage<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSitemap::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSitemap::printFinishMessage<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::printFinishMessage<\/a>"],[100,3,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::isItSafeToCleanOutputDirectory<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::isOutputDirectoryWhitelisted<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::askIfUnsafeDirectoryShouldBeEmptied<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::safeOutputDirectories<\/a>"],[100,1,"Hyde\\Framework\\Actions\\SourceFileParser::__construct<\/a>"],[100,3,"Hyde\\Framework\\Actions\\SourceFileParser::constructPage<\/a>"],[100,1,"Hyde\\Framework\\Actions\\SourceFileParser::parseBladePage<\/a>"],[100,1,"Hyde\\Framework\\Actions\\SourceFileParser::parseMarkdownPage<\/a>"],[100,1,"Hyde\\Framework\\Actions\\SourceFileParser::get<\/a>"],[100,1,"Hyde\\Framework\\Actions\\StaticPageBuilder::handle<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\FileConflictException::__construct<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\FileNotFoundException::__construct<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\RouteNotFoundException::__construct<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\UnsupportedPageTypeException::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeDescription<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeCategory<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeDate<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeAuthor<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeImage<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::getTruncatedMarkdown<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::getMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject::toArray<\/a>"],[100,0,"Hyde\\Framework\\Factories\\Concerns\\PageDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::make<\/a>"],[100,3,"Hyde\\Framework\\Factories\\FeaturedImageFactory::makeSource<\/a>"],[100,2,"Hyde\\Framework\\Factories\\FeaturedImageFactory::normalizeLocalImagePath<\/a>"],[100,2,"Hyde\\Framework\\Factories\\FeaturedImageFactory::getStringMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::makeTitle<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::makeNavigation<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleForPage<\/a>"],[100,4,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleFromMarkdownHeadings<\/a>"],[100,3,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleFromParentIdentifier<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::getMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeLabel<\/a>"],[100,3,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeGroup<\/a>"],[100,4,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeHidden<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::makePriority<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForLabelInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForGroupInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForHiddenInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::isPageHiddenInNavigationConfiguration<\/a>"],[100,4,"Hyde\\Framework\\Factories\\NavigationDataFactory::isNonDocumentationPageInHiddenSubdirectory<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForLabelInConfig<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInConfigs<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInSidebarConfig<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInNavigationConfig<\/a>"],[100,3,"Hyde\\Framework\\Factories\\NavigationDataFactory::parseNavigationPriorityConfig<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::canUseSubdirectoryForGroups<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::defaultGroup<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::pageIsInSubdirectory<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getSubdirectoryName<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getSubdirectoryConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::isInstanceOf<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::invert<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::offset<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getMatter<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::__toString<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getSource<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::setSource<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getContentLength<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getType<\/a>"],[100,3,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getMetadataArray<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getAltText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getTitleText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getAuthorName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getAuthorUrl<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getCopyrightText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getLicenseName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getLicenseUrl<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasAltText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasTitleText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasAuthorName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasAuthorUrl<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasCopyrightText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasLicenseName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasLicenseUrl<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::has<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getContentLengthForLocalImage<\/a>"],[100,3,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getContentLengthForRemoteImage<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::isRemote<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::__construct<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::getOrCreate<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::get<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::all<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::getName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::findUsername<\/a>"],[100,0,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::handle<\/a>"],[100,4,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::run<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::printStartMessage<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::printFinishMessage<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::getMessage<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::write<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::writeln<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::createdSiteFile<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::withExecutionTime<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::generate<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::compile<\/a>"],[100,2,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::enabled<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::routeKey<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::make<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::renderHeader<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::renderBody<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::renderFooter<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::process<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::tokenize<\/a>"],[100,2,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::getTokenizedDataArray<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::normalizeBody<\/a>"],[100,2,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::addDynamicHeaderContent<\/a>"],[100,4,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::addDynamicFooterContent<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::renderSourceLink<\/a>"],[100,3,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::canRenderSourceLink<\/a>"],[100,2,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::hasTorchlight<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement::uniqueKey<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement::formatOptionalAttributes<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\MetadataElement::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\MetadataElement::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\MetadataElement::uniqueKey<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement::uniqueKey<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement::normalizeProperty<\/a>"],[100,5,"Hyde\\Framework\\Features\\Metadata\\GlobalMetadataBag::make<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\GlobalMetadataBag::filterDuplicateMetadata<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::toHtml<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::render<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::get<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::add<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::addElement<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::addGenericElement<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::getPrefixedArray<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::generate<\/a>"],[100,4,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::addDynamicPageMetadata<\/a>"],[100,4,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::addMetadataForMarkdownPost<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::addPostMetadataIfExists<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::resolveImageLink<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::create<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::generate<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::canAddRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::removeDuplicateItems<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::sortByPriority<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::getItems<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::generate<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::hasGroups<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::getGroups<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::getItemsInGroup<\/a>"],[100,3,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::isGroupActive<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::canAddRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::isPageIndexPage<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::shouldIndexPageBeActive<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem::fromArray<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem::getItems<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem::searchForDropdownPriorityInNavigationConfig<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::fromRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::forLink<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavItem::forRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getDestination<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getLabel<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getPriority<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getGroup<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::isCurrent<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getRouteGroup<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavItem::normalizeGroupKey<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationData::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationData::make<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationData::toArray<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::generate<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::hasDropdowns<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::getDropdowns<\/a>"],[100,4,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::moveGroupedItemsIntoDropdowns<\/a>"],[100,3,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::canAddRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::canAddItemToDropdown<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::dropdownsEnabled<\/a>"],[100,0,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::generate<\/a>"],[100,0,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::constructBaseElement<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::make<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::getXml<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::getXmlElement<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::escape<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::addChild<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::generate<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::constructBaseElement<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::addItem<\/a>"],[100,6,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::addDynamicItemData<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::addBaseChannelItems<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::addAtomLinkItem<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getImageType<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getImageLength<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getFilename<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getDescription<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getChannel<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::generate<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::getXml<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::constructBaseElement<\/a>"],[100,2,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::addRoute<\/a>"],[100,2,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::getLastModDate<\/a>"],[100,6,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::getPriority<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::getFormattedProcessingTime<\/a>"],[100,1,"Hyde\\Framework\\HydeServiceProvider::register<\/a>"],[100,1,"Hyde\\Framework\\HydeServiceProvider::boot<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::__construct<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::version<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::cdnLink<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::mediaLink<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::hasMediaFile<\/a>"],[100,3,"Hyde\\Framework\\Services\\AssetService::injectTailwindConfig<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::constructCdnPath<\/a>"],[100,2,"Hyde\\Framework\\Services\\AssetService::getCacheBustKey<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::__construct<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::compileStaticPages<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::transferMediaAssets<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::compilePagesForClass<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::getClassPluralName<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::getPageTypes<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::__construct<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::setOutput<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::getRegisteredTasks<\/a>"],[100,3,"Hyde\\Framework\\Services\\BuildTaskService::runPreBuildTasks<\/a>"],[100,3,"Hyde\\Framework\\Services\\BuildTaskService::runPostBuildTasks<\/a>"],[100,2,"Hyde\\Framework\\Services\\BuildTaskService::registerTask<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::registerTaskInService<\/a>"],[100,2,"Hyde\\Framework\\Services\\BuildTaskService::registerIf<\/a>"],[100,2,"Hyde\\Framework\\Services\\BuildTaskService::registerTasks<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::findTasksInConfig<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::findTasksInAppDirectory<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::pathToClassName<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::makeTaskIdentifier<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::registerFrameworkTasks<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canCleanSiteDirectory<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canGenerateManifest<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canGenerateSitemap<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canGenerateFeed<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canGenerateSearch<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::__construct<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::parse<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::setupConverter<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::addExtension<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::runPreProcessing<\/a>"],[100,3,"Hyde\\Framework\\Services\\MarkdownService::runPostProcessing<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::getExtensions<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::removeFeature<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::addFeature<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::withPermalinks<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::isDocumentationPage<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::withTableOfContents<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::canEnableTorchlight<\/a>"],[100,4,"Hyde\\Framework\\Services\\MarkdownService::canEnablePermalinks<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::hasFeature<\/a>"],[100,3,"Hyde\\Framework\\Services\\MarkdownService::determineIfTorchlightAttributionShouldBeInjected<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::injectTorchlightAttribution<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::configurePermalinksExtension<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::enableAllHtmlElements<\/a>"],[100,3,"Hyde\\Framework\\Services\\MarkdownService::normalizeIndentationLevel<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::getNormalizedLines<\/a>"],[100,4,"Hyde\\Framework\\Services\\MarkdownService::findLineContentPositions<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::checks<\/a>"],[100,1,"Hyde\\Framework\\Services\\ValidationService::run<\/a>"],[100,1,"Hyde\\Framework\\Services\\ValidationService::check_validators_can_run<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::check_site_has_a_404_page<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::check_site_has_an_index_page<\/a>"],[100,5,"Hyde\\Framework\\Services\\ValidationService::check_documentation_site_has_an_index_page<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::check_site_has_an_app_css_stylesheet<\/a>"],[100,2,"Hyde\\Framework\\Services\\ValidationService::check_site_has_a_base_url_set<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::check_a_torchlight_api_token_is_set<\/a>"],[100,2,"Hyde\\Framework\\Services\\ValidationService::check_for_conflicts_between_blade_and_markdown_pages<\/a>"],[100,2,"Hyde\\Framework\\Services\\ViewDiffService::getViewFileHashIndex<\/a>"],[100,2,"Hyde\\Framework\\Services\\ViewDiffService::getChecksums<\/a>"],[100,1,"Hyde\\Framework\\Services\\ViewDiffService::checksumMatchesAny<\/a>"],[100,1,"Hyde\\Framework\\Views\\Components\\BreadcrumbsComponent::__construct<\/a>"],[100,1,"Hyde\\Framework\\Views\\Components\\BreadcrumbsComponent::render<\/a>"],[100,5,"Hyde\\Framework\\Views\\Components\\BreadcrumbsComponent::makeBreadcrumbs<\/a>"],[100,1,"Hyde\\Framework\\Views\\Components\\LinkComponent::__construct<\/a>"],[100,1,"Hyde\\Framework\\Views\\Components\\LinkComponent::render<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\InteractsWithDirectories::needsDirectory<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\InteractsWithDirectories::needsDirectories<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\InteractsWithDirectories::needsParentDirectory<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\InteractsWithFrontMatter::data<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\InteractsWithFrontMatter::matter<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\InteractsWithFrontMatter::has<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem::__callStatic<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem::getParameterNames<\/a>"],[100,3,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem::qualifyArguments<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem::qualifyPathArgument<\/a>"],[100,3,"Hyde\\Framework\\Concerns\\Internal\\MockableFeatures::mock<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\MockableFeatures::resolveMockedInstance<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\MockableFeatures::clearMockedInstances<\/a>"],[100,4,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::enableDynamicExtensions<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::enableConfigDefinedExtensions<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::mergeMarkdownConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::initializeExtension<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::registerPreProcessors<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::registerPostProcessors<\/a>"],[100,3,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::registerPreProcessor<\/a>"],[100,3,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::registerPostProcessor<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\RegistersFileLocations::registerSourceDirectories<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\RegistersFileLocations::registerOutputDirectories<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::discoverBladeViewsIn<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::storeCompiledSiteIn<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::useMediaDirectory<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::getSourceDirectoryConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::getOutputDirectoryConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::getPageConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\TracksExecutionTime::startClock<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\TracksExecutionTime::stopClock<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\TracksExecutionTime::getExecutionTimeInMs<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\TracksExecutionTime::getExecutionTimeString<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\ValidatesExistence::validateExistence<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::toCoreDataObject<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::constructFactoryData<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::assignFactoryData<\/a>"]], 'Method Complexity'))
+ .datum(getComplexityData([[100,1,"Hyde\\Framework\\Actions\\AnonymousViewCompiler::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\AnonymousViewCompiler::__construct<\/a>"],[100,2,"Hyde\\Framework\\Actions\\AnonymousViewCompiler::__invoke<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::parseFile<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::parseString<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::get<\/a>"],[100,3,"Hyde\\Framework\\Actions\\BladeMatterParser::parse<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::lineMatchesFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::extractKey<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::extractValue<\/a>"],[100,3,"Hyde\\Framework\\Actions\\BladeMatterParser::getValueWithType<\/a>"],[100,5,"Hyde\\Framework\\Actions\\BladeMatterParser::parseArrayString<\/a>"],[100,2,"Hyde\\Framework\\Actions\\BladeMatterParser::isValueArrayString<\/a>"],[100,2,"Hyde\\Framework\\Actions\\ConvertsArrayToFrontMatter::execute<\/a>"],[100,1,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::execute<\/a>"],[100,2,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::applyRegexTransformations<\/a>"],[100,2,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::applyStringTransformations<\/a>"],[100,5,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::removeTables<\/a>"],[100,3,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::removeBlockquotes<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile::__construct<\/a>"],[100,3,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile::save<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile::toArray<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile::getIdentifier<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::save<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::parseTitle<\/a>"],[100,2,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::fileName<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::normalizeSubdirectory<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::makeOutputPath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::createBladeFile<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::createMarkdownFile<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::createDocumentationFile<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::formatIdentifier<\/a>"],[100,2,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::validateType<\/a>"],[100,3,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::failIfFileCannotBeSaved<\/a>"],[100,2,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::getBladePageContent<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::getMarkdownPageContent<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::__construct<\/a>"],[100,2,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::run<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::generatePageEntry<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::save<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::getSearchContentForDocument<\/a>"],[100,3,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::formatDestination<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::getPath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesTableOfContents::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesTableOfContents::execute<\/a>"],[100,2,"Hyde\\Framework\\Actions\\GeneratesTableOfContents::extractTableOfContents<\/a>"],[100,1,"Hyde\\Framework\\Actions\\MarkdownFileParser::parse<\/a>"],[100,4,"Hyde\\Framework\\Actions\\MarkdownFileParser::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\MarkdownFileParser::get<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::handle<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::hashOutputPath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::hashSourcePath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::getManifestPath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::jsonEncodeOutput<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::setOutput<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateRssFeed::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateRssFeed::printFinishMessage<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSearch::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSearch::printFinishMessage<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSitemap::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSitemap::printFinishMessage<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::printFinishMessage<\/a>"],[100,3,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::isItSafeToCleanOutputDirectory<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::isOutputDirectoryWhitelisted<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::askIfUnsafeDirectoryShouldBeEmptied<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::safeOutputDirectories<\/a>"],[100,1,"Hyde\\Framework\\Actions\\SourceFileParser::__construct<\/a>"],[100,3,"Hyde\\Framework\\Actions\\SourceFileParser::constructPage<\/a>"],[100,1,"Hyde\\Framework\\Actions\\SourceFileParser::parseBladePage<\/a>"],[100,1,"Hyde\\Framework\\Actions\\SourceFileParser::parseMarkdownPage<\/a>"],[100,1,"Hyde\\Framework\\Actions\\SourceFileParser::get<\/a>"],[100,1,"Hyde\\Framework\\Actions\\StaticPageBuilder::handle<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\FileConflictException::__construct<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\FileNotFoundException::__construct<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\RouteNotFoundException::__construct<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\UnsupportedPageTypeException::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeDescription<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeCategory<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeDate<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeAuthor<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeImage<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::getTruncatedMarkdown<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::getMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject::toArray<\/a>"],[100,0,"Hyde\\Framework\\Factories\\Concerns\\PageDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::make<\/a>"],[100,3,"Hyde\\Framework\\Factories\\FeaturedImageFactory::makeSource<\/a>"],[100,2,"Hyde\\Framework\\Factories\\FeaturedImageFactory::normalizeLocalImagePath<\/a>"],[100,2,"Hyde\\Framework\\Factories\\FeaturedImageFactory::getStringMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::makeTitle<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::makeNavigation<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleForPage<\/a>"],[100,4,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleFromMarkdownHeadings<\/a>"],[100,3,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleFromParentIdentifier<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::getMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeLabel<\/a>"],[100,3,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeGroup<\/a>"],[100,4,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeHidden<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::makePriority<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForLabelInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForGroupInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForHiddenInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::isPageHiddenInNavigationConfiguration<\/a>"],[100,4,"Hyde\\Framework\\Factories\\NavigationDataFactory::isNonDocumentationPageInHiddenSubdirectory<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForLabelInConfig<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInConfigs<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInSidebarConfig<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInNavigationConfig<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::parseNavigationPriorityConfig<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::canUseSubdirectoryForGroups<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::defaultGroup<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::pageIsInSubdirectory<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getSubdirectoryName<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getSubdirectoryConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::isInstanceOf<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::invert<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::offset<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getMatter<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::__toString<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getSource<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::setSource<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getContentLength<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getType<\/a>"],[100,3,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getMetadataArray<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getAltText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getTitleText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getAuthorName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getAuthorUrl<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getCopyrightText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getLicenseName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getLicenseUrl<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasAltText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasTitleText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasAuthorName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasAuthorUrl<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasCopyrightText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasLicenseName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasLicenseUrl<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::has<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getContentLengthForLocalImage<\/a>"],[100,3,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getContentLengthForRemoteImage<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::isRemote<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::__construct<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::getOrCreate<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::get<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::all<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::getName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::findUsername<\/a>"],[100,0,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::handle<\/a>"],[100,4,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::run<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::printStartMessage<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::printFinishMessage<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::getMessage<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::write<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::writeln<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::createdSiteFile<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::withExecutionTime<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::generate<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::compile<\/a>"],[100,2,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::enabled<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::routeKey<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::make<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::renderHeader<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::renderBody<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::renderFooter<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::process<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::tokenize<\/a>"],[100,2,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::getTokenizedDataArray<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::normalizeBody<\/a>"],[100,2,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::addDynamicHeaderContent<\/a>"],[100,4,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::addDynamicFooterContent<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::renderSourceLink<\/a>"],[100,3,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::canRenderSourceLink<\/a>"],[100,2,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::hasTorchlight<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement::uniqueKey<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement::formatOptionalAttributes<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\MetadataElement::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\MetadataElement::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\MetadataElement::uniqueKey<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement::uniqueKey<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement::normalizeProperty<\/a>"],[100,5,"Hyde\\Framework\\Features\\Metadata\\GlobalMetadataBag::make<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\GlobalMetadataBag::filterDuplicateMetadata<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::toHtml<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::render<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::get<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::add<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::addElement<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::addGenericElement<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::getPrefixedArray<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::generate<\/a>"],[100,4,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::addDynamicPageMetadata<\/a>"],[100,4,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::addMetadataForMarkdownPost<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::addPostMetadataIfExists<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::resolveImageLink<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::create<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::generate<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::canAddRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::removeDuplicateItems<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::sortByPriority<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::getItems<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::generate<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::hasGroups<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::getGroups<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::getItemsInGroup<\/a>"],[100,3,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::isGroupActive<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::canAddRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::isPageIndexPage<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::shouldIndexPageBeActive<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem::fromArray<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem::getItems<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem::searchForDropdownPriorityInNavigationConfig<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::fromRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::forLink<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavItem::forRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getDestination<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getLabel<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getPriority<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getGroup<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::isCurrent<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getRouteGroup<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavItem::normalizeGroupKey<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationData::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationData::make<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationData::toArray<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::generate<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::hasDropdowns<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::getDropdowns<\/a>"],[100,4,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::moveGroupedItemsIntoDropdowns<\/a>"],[100,3,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::canAddRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::canAddItemToDropdown<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::dropdownsEnabled<\/a>"],[100,0,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::generate<\/a>"],[100,0,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::constructBaseElement<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::make<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::getXml<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::getXmlElement<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::escape<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::addChild<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::generate<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::constructBaseElement<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::addItem<\/a>"],[100,6,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::addDynamicItemData<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::addBaseChannelItems<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::addAtomLinkItem<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getImageType<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getImageLength<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getFilename<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getDescription<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getChannel<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::generate<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::getXml<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::constructBaseElement<\/a>"],[100,2,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::addRoute<\/a>"],[100,2,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::getLastModDate<\/a>"],[100,6,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::getPriority<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::getFormattedProcessingTime<\/a>"],[100,1,"Hyde\\Framework\\HydeServiceProvider::register<\/a>"],[100,1,"Hyde\\Framework\\HydeServiceProvider::boot<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::__construct<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::version<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::cdnLink<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::mediaLink<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::hasMediaFile<\/a>"],[100,3,"Hyde\\Framework\\Services\\AssetService::injectTailwindConfig<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::constructCdnPath<\/a>"],[100,2,"Hyde\\Framework\\Services\\AssetService::getCacheBustKey<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::__construct<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::compileStaticPages<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::transferMediaAssets<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::compilePagesForClass<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::getClassPluralName<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::getPageTypes<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::__construct<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::setOutput<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::getRegisteredTasks<\/a>"],[100,3,"Hyde\\Framework\\Services\\BuildTaskService::runPreBuildTasks<\/a>"],[100,3,"Hyde\\Framework\\Services\\BuildTaskService::runPostBuildTasks<\/a>"],[100,2,"Hyde\\Framework\\Services\\BuildTaskService::registerTask<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::registerTaskInService<\/a>"],[100,2,"Hyde\\Framework\\Services\\BuildTaskService::registerIf<\/a>"],[100,2,"Hyde\\Framework\\Services\\BuildTaskService::registerTasks<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::findTasksInConfig<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::findTasksInAppDirectory<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::pathToClassName<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::makeTaskIdentifier<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::registerFrameworkTasks<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canCleanSiteDirectory<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canGenerateManifest<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canGenerateSitemap<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canGenerateFeed<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canGenerateSearch<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::__construct<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::parse<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::setupConverter<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::addExtension<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::runPreProcessing<\/a>"],[100,3,"Hyde\\Framework\\Services\\MarkdownService::runPostProcessing<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::getExtensions<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::removeFeature<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::addFeature<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::withPermalinks<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::isDocumentationPage<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::withTableOfContents<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::canEnableTorchlight<\/a>"],[100,4,"Hyde\\Framework\\Services\\MarkdownService::canEnablePermalinks<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::hasFeature<\/a>"],[100,3,"Hyde\\Framework\\Services\\MarkdownService::determineIfTorchlightAttributionShouldBeInjected<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::injectTorchlightAttribution<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::configurePermalinksExtension<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::enableAllHtmlElements<\/a>"],[100,3,"Hyde\\Framework\\Services\\MarkdownService::normalizeIndentationLevel<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::getNormalizedLines<\/a>"],[100,4,"Hyde\\Framework\\Services\\MarkdownService::findLineContentPositions<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::checks<\/a>"],[100,1,"Hyde\\Framework\\Services\\ValidationService::run<\/a>"],[100,1,"Hyde\\Framework\\Services\\ValidationService::check_validators_can_run<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::check_site_has_a_404_page<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::check_site_has_an_index_page<\/a>"],[100,5,"Hyde\\Framework\\Services\\ValidationService::check_documentation_site_has_an_index_page<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::check_site_has_an_app_css_stylesheet<\/a>"],[100,2,"Hyde\\Framework\\Services\\ValidationService::check_site_has_a_base_url_set<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::check_a_torchlight_api_token_is_set<\/a>"],[100,2,"Hyde\\Framework\\Services\\ValidationService::check_for_conflicts_between_blade_and_markdown_pages<\/a>"],[100,2,"Hyde\\Framework\\Services\\ViewDiffService::getViewFileHashIndex<\/a>"],[100,2,"Hyde\\Framework\\Services\\ViewDiffService::getChecksums<\/a>"],[100,1,"Hyde\\Framework\\Services\\ViewDiffService::checksumMatchesAny<\/a>"],[100,1,"Hyde\\Framework\\Views\\Components\\BreadcrumbsComponent::__construct<\/a>"],[100,1,"Hyde\\Framework\\Views\\Components\\BreadcrumbsComponent::render<\/a>"],[100,5,"Hyde\\Framework\\Views\\Components\\BreadcrumbsComponent::makeBreadcrumbs<\/a>"],[100,1,"Hyde\\Framework\\Views\\Components\\LinkComponent::__construct<\/a>"],[100,1,"Hyde\\Framework\\Views\\Components\\LinkComponent::render<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\InteractsWithDirectories::needsDirectory<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\InteractsWithDirectories::needsDirectories<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\InteractsWithDirectories::needsParentDirectory<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\InteractsWithFrontMatter::data<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\InteractsWithFrontMatter::matter<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\InteractsWithFrontMatter::has<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem::__callStatic<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem::getParameterNames<\/a>"],[100,3,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem::qualifyArguments<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem::qualifyPathArgument<\/a>"],[100,3,"Hyde\\Framework\\Concerns\\Internal\\MockableFeatures::mock<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\MockableFeatures::resolveMockedInstance<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\MockableFeatures::clearMockedInstances<\/a>"],[100,4,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::enableDynamicExtensions<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::enableConfigDefinedExtensions<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::mergeMarkdownConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::initializeExtension<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::registerPreProcessors<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::registerPostProcessors<\/a>"],[100,3,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::registerPreProcessor<\/a>"],[100,3,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::registerPostProcessor<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\RegistersFileLocations::registerSourceDirectories<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\RegistersFileLocations::registerOutputDirectories<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::discoverBladeViewsIn<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::storeCompiledSiteIn<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::useMediaDirectory<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::getSourceDirectoryConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::getOutputDirectoryConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::getPageConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\TracksExecutionTime::startClock<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\TracksExecutionTime::stopClock<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\TracksExecutionTime::getExecutionTimeInMs<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\TracksExecutionTime::getExecutionTimeString<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\ValidatesExistence::validateExistence<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::toCoreDataObject<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::constructFactoryData<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::assignFactoryData<\/a>"]], 'Method Complexity'))
.transition()
.duration(500)
.call(chart);
diff --git a/master/coverage/framework/src/Framework/index.html b/master/coverage/framework/src/Framework/index.html
index 63cab1a03bb..9233deefc25 100644
--- a/master/coverage/framework/src/Framework/index.html
+++ b/master/coverage/framework/src/Framework/index.html
@@ -53,7 +53,7 @@
|
100.00% |
- 1217 / 1217 |
+ 1219 / 1219 |
100.00% covered (success)
@@ -165,7 +165,7 @@
|
100.00% |
- 186 / 186 |
+ 188 / 188 |
diff --git a/master/coverage/framework/src/Hyde.php.html b/master/coverage/framework/src/Hyde.php.html
index 2257217d001..4512309c38d 100644
--- a/master/coverage/framework/src/Hyde.php.html
+++ b/master/coverage/framework/src/Hyde.php.html
@@ -275,7 +275,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/BlogPostSchema.php.html b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/BlogPostSchema.php.html
index 6e4ca62c063..c631460d363 100644
--- a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/BlogPostSchema.php.html
+++ b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/BlogPostSchema.php.html
@@ -99,7 +99,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/FrontMatterSchema.php.html b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/FrontMatterSchema.php.html
index 18b44972883..ac5f99ac1cd 100644
--- a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/FrontMatterSchema.php.html
+++ b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/FrontMatterSchema.php.html
@@ -104,7 +104,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/PageSchema.php.html b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/PageSchema.php.html
index aec8c2987c2..8bf520e5758 100644
--- a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/PageSchema.php.html
+++ b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/PageSchema.php.html
@@ -95,7 +95,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/AuthorSchema.php.html b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/AuthorSchema.php.html
index 8cab33c533a..e5cad6637cc 100644
--- a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/AuthorSchema.php.html
+++ b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/AuthorSchema.php.html
@@ -96,7 +96,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/FeaturedImageSchema.php.html b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/FeaturedImageSchema.php.html
index 607da3b2076..160dff7ce4e 100644
--- a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/FeaturedImageSchema.php.html
+++ b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/FeaturedImageSchema.php.html
@@ -102,7 +102,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/NavigationSchema.php.html b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/NavigationSchema.php.html
index c7faba7dc25..162120039fb 100644
--- a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/NavigationSchema.php.html
+++ b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/NavigationSchema.php.html
@@ -98,7 +98,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/dashboard.html b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/dashboard.html
index 76ceb29f5db..873ad48f7ad 100644
--- a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/dashboard.html
+++ b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/dashboard.html
@@ -141,7 +141,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/index.html b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/index.html
index 644c519e114..6269beaf462 100644
--- a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/index.html
+++ b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/SubSchemas/index.html
@@ -112,7 +112,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/dashboard.html b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/dashboard.html
index 1e078a9c53a..9d0c89c26b3 100644
--- a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/dashboard.html
+++ b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/dashboard.html
@@ -140,7 +140,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/index.html b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/index.html
index cde39038d94..83327757497 100644
--- a/master/coverage/framework/src/Markdown/Contracts/FrontMatter/index.html
+++ b/master/coverage/framework/src/Markdown/Contracts/FrontMatter/index.html
@@ -124,7 +124,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Contracts/MarkdownDocumentContract.php.html b/master/coverage/framework/src/Markdown/Contracts/MarkdownDocumentContract.php.html
index 82a4402d5a6..25c2e6f02c5 100644
--- a/master/coverage/framework/src/Markdown/Contracts/MarkdownDocumentContract.php.html
+++ b/master/coverage/framework/src/Markdown/Contracts/MarkdownDocumentContract.php.html
@@ -97,7 +97,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Contracts/MarkdownPostProcessorContract.php.html b/master/coverage/framework/src/Markdown/Contracts/MarkdownPostProcessorContract.php.html
index 40346454b70..eb060e9ae98 100644
--- a/master/coverage/framework/src/Markdown/Contracts/MarkdownPostProcessorContract.php.html
+++ b/master/coverage/framework/src/Markdown/Contracts/MarkdownPostProcessorContract.php.html
@@ -94,7 +94,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Contracts/MarkdownPreProcessorContract.php.html b/master/coverage/framework/src/Markdown/Contracts/MarkdownPreProcessorContract.php.html
index fa353fa8014..11d7ce94fb1 100644
--- a/master/coverage/framework/src/Markdown/Contracts/MarkdownPreProcessorContract.php.html
+++ b/master/coverage/framework/src/Markdown/Contracts/MarkdownPreProcessorContract.php.html
@@ -94,7 +94,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Contracts/MarkdownShortcodeContract.php.html b/master/coverage/framework/src/Markdown/Contracts/MarkdownShortcodeContract.php.html
index 249489312e4..cd822a8676a 100644
--- a/master/coverage/framework/src/Markdown/Contracts/MarkdownShortcodeContract.php.html
+++ b/master/coverage/framework/src/Markdown/Contracts/MarkdownShortcodeContract.php.html
@@ -90,7 +90,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Contracts/dashboard.html b/master/coverage/framework/src/Markdown/Contracts/dashboard.html
index df55d722384..5bcfa7354bf 100644
--- a/master/coverage/framework/src/Markdown/Contracts/dashboard.html
+++ b/master/coverage/framework/src/Markdown/Contracts/dashboard.html
@@ -139,7 +139,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Markdown/Contracts/index.html b/master/coverage/framework/src/Markdown/Contracts/index.html
index 7ff005109a3..befb80d76ec 100644
--- a/master/coverage/framework/src/Markdown/Contracts/index.html
+++ b/master/coverage/framework/src/Markdown/Contracts/index.html
@@ -136,7 +136,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/MarkdownConverter.php.html b/master/coverage/framework/src/Markdown/MarkdownConverter.php.html
index 0b87b9f0bc2..ae5fc32e7fb 100644
--- a/master/coverage/framework/src/Markdown/MarkdownConverter.php.html
+++ b/master/coverage/framework/src/Markdown/MarkdownConverter.php.html
@@ -169,7 +169,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Models/FrontMatter.php.html b/master/coverage/framework/src/Markdown/Models/FrontMatter.php.html
index db7b6d7b96c..a66d9e09889 100644
--- a/master/coverage/framework/src/Markdown/Models/FrontMatter.php.html
+++ b/master/coverage/framework/src/Markdown/Models/FrontMatter.php.html
@@ -376,7 +376,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Models/Markdown.php.html b/master/coverage/framework/src/Markdown/Models/Markdown.php.html
index 782b3b72a85..3e4e6808256 100644
--- a/master/coverage/framework/src/Markdown/Models/Markdown.php.html
+++ b/master/coverage/framework/src/Markdown/Models/Markdown.php.html
@@ -393,7 +393,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Models/MarkdownDocument.php.html b/master/coverage/framework/src/Markdown/Models/MarkdownDocument.php.html
index 97eb3294bc5..062bde47fb1 100644
--- a/master/coverage/framework/src/Markdown/Models/MarkdownDocument.php.html
+++ b/master/coverage/framework/src/Markdown/Models/MarkdownDocument.php.html
@@ -251,7 +251,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Models/dashboard.html b/master/coverage/framework/src/Markdown/Models/dashboard.html
index afb87dd583f..43df0f3fbf1 100644
--- a/master/coverage/framework/src/Markdown/Models/dashboard.html
+++ b/master/coverage/framework/src/Markdown/Models/dashboard.html
@@ -139,7 +139,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Markdown/Models/index.html b/master/coverage/framework/src/Markdown/Models/index.html
index 8f49e352ec9..79d2b0756c7 100644
--- a/master/coverage/framework/src/Markdown/Models/index.html
+++ b/master/coverage/framework/src/Markdown/Models/index.html
@@ -170,7 +170,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Processing/BladeDownProcessor.php.html b/master/coverage/framework/src/Markdown/Processing/BladeDownProcessor.php.html
index 19b4126727d..44514b9b7d6 100644
--- a/master/coverage/framework/src/Markdown/Processing/BladeDownProcessor.php.html
+++ b/master/coverage/framework/src/Markdown/Processing/BladeDownProcessor.php.html
@@ -388,7 +388,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Processing/CodeblockFilepathProcessor.php.html b/master/coverage/framework/src/Markdown/Processing/CodeblockFilepathProcessor.php.html
index 10330431e24..4c5e964d53f 100644
--- a/master/coverage/framework/src/Markdown/Processing/CodeblockFilepathProcessor.php.html
+++ b/master/coverage/framework/src/Markdown/Processing/CodeblockFilepathProcessor.php.html
@@ -409,7 +409,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Processing/ColoredBlockquotes.php.html b/master/coverage/framework/src/Markdown/Processing/ColoredBlockquotes.php.html
index bcd3491e6a0..222ae080762 100644
--- a/master/coverage/framework/src/Markdown/Processing/ColoredBlockquotes.php.html
+++ b/master/coverage/framework/src/Markdown/Processing/ColoredBlockquotes.php.html
@@ -299,7 +299,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Processing/ShortcodeProcessor.php.html b/master/coverage/framework/src/Markdown/Processing/ShortcodeProcessor.php.html
index 6c9566bb32f..bfafb7ae3bb 100644
--- a/master/coverage/framework/src/Markdown/Processing/ShortcodeProcessor.php.html
+++ b/master/coverage/framework/src/Markdown/Processing/ShortcodeProcessor.php.html
@@ -497,7 +497,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/Processing/dashboard.html b/master/coverage/framework/src/Markdown/Processing/dashboard.html
index 34b8fd4fb94..b12e5cab9cd 100644
--- a/master/coverage/framework/src/Markdown/Processing/dashboard.html
+++ b/master/coverage/framework/src/Markdown/Processing/dashboard.html
@@ -139,7 +139,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Markdown/Processing/index.html b/master/coverage/framework/src/Markdown/Processing/index.html
index bbf36e08367..99c8411f002 100644
--- a/master/coverage/framework/src/Markdown/Processing/index.html
+++ b/master/coverage/framework/src/Markdown/Processing/index.html
@@ -198,7 +198,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Markdown/dashboard.html b/master/coverage/framework/src/Markdown/dashboard.html
index c1eacce938e..33cdd837e4f 100644
--- a/master/coverage/framework/src/Markdown/dashboard.html
+++ b/master/coverage/framework/src/Markdown/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Markdown/index.html b/master/coverage/framework/src/Markdown/index.html
index 7d2abb6a022..d8e5ebd0610 100644
--- a/master/coverage/framework/src/Markdown/index.html
+++ b/master/coverage/framework/src/Markdown/index.html
@@ -182,7 +182,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Pages/BladePage.php.html b/master/coverage/framework/src/Pages/BladePage.php.html
index a63c49d282a..205b57fe7a4 100644
--- a/master/coverage/framework/src/Pages/BladePage.php.html
+++ b/master/coverage/framework/src/Pages/BladePage.php.html
@@ -227,7 +227,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Pages/Concerns/BaseMarkdownPage.php.html b/master/coverage/framework/src/Pages/Concerns/BaseMarkdownPage.php.html
index c75e1a5cc3b..60ddc7d8b66 100644
--- a/master/coverage/framework/src/Pages/Concerns/BaseMarkdownPage.php.html
+++ b/master/coverage/framework/src/Pages/Concerns/BaseMarkdownPage.php.html
@@ -303,7 +303,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Pages/Concerns/HydePage.php.html b/master/coverage/framework/src/Pages/Concerns/HydePage.php.html
index e1e69076b6b..7ee8fd91bb7 100644
--- a/master/coverage/framework/src/Pages/Concerns/HydePage.php.html
+++ b/master/coverage/framework/src/Pages/Concerns/HydePage.php.html
@@ -1296,7 +1296,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Pages/Concerns/dashboard.html b/master/coverage/framework/src/Pages/Concerns/dashboard.html
index e0f4460f44a..654e882b125 100644
--- a/master/coverage/framework/src/Pages/Concerns/dashboard.html
+++ b/master/coverage/framework/src/Pages/Concerns/dashboard.html
@@ -139,7 +139,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Pages/Concerns/index.html b/master/coverage/framework/src/Pages/Concerns/index.html
index 1ff11d9c62b..d1b783ae896 100644
--- a/master/coverage/framework/src/Pages/Concerns/index.html
+++ b/master/coverage/framework/src/Pages/Concerns/index.html
@@ -142,7 +142,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Pages/DocumentationPage.php.html b/master/coverage/framework/src/Pages/DocumentationPage.php.html
index f7ff5506c72..05ffca675a2 100644
--- a/master/coverage/framework/src/Pages/DocumentationPage.php.html
+++ b/master/coverage/framework/src/Pages/DocumentationPage.php.html
@@ -360,7 +360,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Pages/HtmlPage.php.html b/master/coverage/framework/src/Pages/HtmlPage.php.html
index 3028a2472dc..e8af4d0e19b 100644
--- a/master/coverage/framework/src/Pages/HtmlPage.php.html
+++ b/master/coverage/framework/src/Pages/HtmlPage.php.html
@@ -221,7 +221,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Pages/InMemoryPage.php.html b/master/coverage/framework/src/Pages/InMemoryPage.php.html
index 08a4beb0f70..ff2cf6739c6 100644
--- a/master/coverage/framework/src/Pages/InMemoryPage.php.html
+++ b/master/coverage/framework/src/Pages/InMemoryPage.php.html
@@ -469,7 +469,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Pages/MarkdownPage.php.html b/master/coverage/framework/src/Pages/MarkdownPage.php.html
index bd32edf7c38..162d7b0153f 100644
--- a/master/coverage/framework/src/Pages/MarkdownPage.php.html
+++ b/master/coverage/framework/src/Pages/MarkdownPage.php.html
@@ -110,7 +110,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Pages/MarkdownPost.php.html b/master/coverage/framework/src/Pages/MarkdownPost.php.html
index e9c7da7e301..dc92af034e4 100644
--- a/master/coverage/framework/src/Pages/MarkdownPost.php.html
+++ b/master/coverage/framework/src/Pages/MarkdownPost.php.html
@@ -216,7 +216,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Pages/dashboard.html b/master/coverage/framework/src/Pages/dashboard.html
index 2726db813fe..14ebfab7acd 100644
--- a/master/coverage/framework/src/Pages/dashboard.html
+++ b/master/coverage/framework/src/Pages/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Pages/index.html b/master/coverage/framework/src/Pages/index.html
index 612c4f85a34..39a83632524 100644
--- a/master/coverage/framework/src/Pages/index.html
+++ b/master/coverage/framework/src/Pages/index.html
@@ -266,7 +266,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/BuildWarnings.php.html b/master/coverage/framework/src/Support/BuildWarnings.php.html
index c0bce2e7ac6..b74f3a5c19d 100644
--- a/master/coverage/framework/src/Support/BuildWarnings.php.html
+++ b/master/coverage/framework/src/Support/BuildWarnings.php.html
@@ -408,7 +408,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Concerns/Serializable.php.html b/master/coverage/framework/src/Support/Concerns/Serializable.php.html
index b886f28d82a..493d1067781 100644
--- a/master/coverage/framework/src/Support/Concerns/Serializable.php.html
+++ b/master/coverage/framework/src/Support/Concerns/Serializable.php.html
@@ -234,7 +234,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Concerns/dashboard.html b/master/coverage/framework/src/Support/Concerns/dashboard.html
index a28be1cc879..cc892e9670b 100644
--- a/master/coverage/framework/src/Support/Concerns/dashboard.html
+++ b/master/coverage/framework/src/Support/Concerns/dashboard.html
@@ -139,7 +139,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Support/Concerns/index.html b/master/coverage/framework/src/Support/Concerns/index.html
index a6fbb759a55..999864fec31 100644
--- a/master/coverage/framework/src/Support/Concerns/index.html
+++ b/master/coverage/framework/src/Support/Concerns/index.html
@@ -114,7 +114,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Contracts/SerializableContract.php.html b/master/coverage/framework/src/Support/Contracts/SerializableContract.php.html
index 8b82d37cf76..df0d795cd1a 100644
--- a/master/coverage/framework/src/Support/Contracts/SerializableContract.php.html
+++ b/master/coverage/framework/src/Support/Contracts/SerializableContract.php.html
@@ -114,7 +114,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Contracts/dashboard.html b/master/coverage/framework/src/Support/Contracts/dashboard.html
index 3723c0f612a..42a2318cd77 100644
--- a/master/coverage/framework/src/Support/Contracts/dashboard.html
+++ b/master/coverage/framework/src/Support/Contracts/dashboard.html
@@ -139,7 +139,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Support/Contracts/index.html b/master/coverage/framework/src/Support/Contracts/index.html
index 90cb00768a2..ea8e30276e7 100644
--- a/master/coverage/framework/src/Support/Contracts/index.html
+++ b/master/coverage/framework/src/Support/Contracts/index.html
@@ -84,7 +84,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/DataCollections.php.html b/master/coverage/framework/src/Support/DataCollections.php.html
index dd19c9156f0..be91f596d4d 100644
--- a/master/coverage/framework/src/Support/DataCollections.php.html
+++ b/master/coverage/framework/src/Support/DataCollections.php.html
@@ -330,7 +330,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Facades/Render.php.html b/master/coverage/framework/src/Support/Facades/Render.php.html
index c6faf09f663..5e95f1141fd 100644
--- a/master/coverage/framework/src/Support/Facades/Render.php.html
+++ b/master/coverage/framework/src/Support/Facades/Render.php.html
@@ -173,7 +173,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Facades/dashboard.html b/master/coverage/framework/src/Support/Facades/dashboard.html
index 449b051074c..70731e0ff6c 100644
--- a/master/coverage/framework/src/Support/Facades/dashboard.html
+++ b/master/coverage/framework/src/Support/Facades/dashboard.html
@@ -139,7 +139,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Support/Facades/index.html b/master/coverage/framework/src/Support/Facades/index.html
index 198509a7712..6e75b2cce36 100644
--- a/master/coverage/framework/src/Support/Facades/index.html
+++ b/master/coverage/framework/src/Support/Facades/index.html
@@ -114,7 +114,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Filesystem/MediaFile.php.html b/master/coverage/framework/src/Support/Filesystem/MediaFile.php.html
index ae14eefe7c2..ddddea62501 100644
--- a/master/coverage/framework/src/Support/Filesystem/MediaFile.php.html
+++ b/master/coverage/framework/src/Support/Filesystem/MediaFile.php.html
@@ -435,7 +435,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Filesystem/ProjectFile.php.html b/master/coverage/framework/src/Support/Filesystem/ProjectFile.php.html
index 126737b7b3c..2f6777a0655 100644
--- a/master/coverage/framework/src/Support/Filesystem/ProjectFile.php.html
+++ b/master/coverage/framework/src/Support/Filesystem/ProjectFile.php.html
@@ -371,7 +371,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Filesystem/SourceFile.php.html b/master/coverage/framework/src/Support/Filesystem/SourceFile.php.html
index 7d337b4c4bf..e4d27dd0586 100644
--- a/master/coverage/framework/src/Support/Filesystem/SourceFile.php.html
+++ b/master/coverage/framework/src/Support/Filesystem/SourceFile.php.html
@@ -229,7 +229,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Filesystem/dashboard.html b/master/coverage/framework/src/Support/Filesystem/dashboard.html
index 7bde9048fd0..4fdac064629 100644
--- a/master/coverage/framework/src/Support/Filesystem/dashboard.html
+++ b/master/coverage/framework/src/Support/Filesystem/dashboard.html
@@ -139,7 +139,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Support/Filesystem/index.html b/master/coverage/framework/src/Support/Filesystem/index.html
index 3fe195d8a65..ba630d33a28 100644
--- a/master/coverage/framework/src/Support/Filesystem/index.html
+++ b/master/coverage/framework/src/Support/Filesystem/index.html
@@ -170,7 +170,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Includes.php.html b/master/coverage/framework/src/Support/Includes.php.html
index 4e0dc6f0480..b227b38ddb4 100644
--- a/master/coverage/framework/src/Support/Includes.php.html
+++ b/master/coverage/framework/src/Support/Includes.php.html
@@ -331,7 +331,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Models/DateString.php.html b/master/coverage/framework/src/Support/Models/DateString.php.html
index 3fd9ef420e8..13adb621b1b 100644
--- a/master/coverage/framework/src/Support/Models/DateString.php.html
+++ b/master/coverage/framework/src/Support/Models/DateString.php.html
@@ -212,7 +212,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Models/Redirect.php.html b/master/coverage/framework/src/Support/Models/Redirect.php.html
index 8021d86126f..1537656c5a5 100644
--- a/master/coverage/framework/src/Support/Models/Redirect.php.html
+++ b/master/coverage/framework/src/Support/Models/Redirect.php.html
@@ -312,7 +312,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Models/RenderData.php.html b/master/coverage/framework/src/Support/Models/RenderData.php.html
index 7cfd94b243c..ec0111e7331 100644
--- a/master/coverage/framework/src/Support/Models/RenderData.php.html
+++ b/master/coverage/framework/src/Support/Models/RenderData.php.html
@@ -379,7 +379,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Models/Route.php.html b/master/coverage/framework/src/Support/Models/Route.php.html
index 10efefcbb98..42d4f3515a7 100644
--- a/master/coverage/framework/src/Support/Models/Route.php.html
+++ b/master/coverage/framework/src/Support/Models/Route.php.html
@@ -467,7 +467,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Models/RouteKey.php.html b/master/coverage/framework/src/Support/Models/RouteKey.php.html
index 071e90a47da..b84c7ef0162 100644
--- a/master/coverage/framework/src/Support/Models/RouteKey.php.html
+++ b/master/coverage/framework/src/Support/Models/RouteKey.php.html
@@ -281,7 +281,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Models/RouteList.php.html b/master/coverage/framework/src/Support/Models/RouteList.php.html
index 43ce02b8f9e..c82488a1e17 100644
--- a/master/coverage/framework/src/Support/Models/RouteList.php.html
+++ b/master/coverage/framework/src/Support/Models/RouteList.php.html
@@ -283,7 +283,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Models/RouteListItem.php.html b/master/coverage/framework/src/Support/Models/RouteListItem.php.html
index cd0a949f04f..60e26efa050 100644
--- a/master/coverage/framework/src/Support/Models/RouteListItem.php.html
+++ b/master/coverage/framework/src/Support/Models/RouteListItem.php.html
@@ -335,7 +335,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Models/ValidationResult.php.html b/master/coverage/framework/src/Support/Models/ValidationResult.php.html
index f22c5e496eb..7a482a383f7 100644
--- a/master/coverage/framework/src/Support/Models/ValidationResult.php.html
+++ b/master/coverage/framework/src/Support/Models/ValidationResult.php.html
@@ -678,7 +678,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Models/dashboard.html b/master/coverage/framework/src/Support/Models/dashboard.html
index 9ff5c74e577..e1a2ed497e9 100644
--- a/master/coverage/framework/src/Support/Models/dashboard.html
+++ b/master/coverage/framework/src/Support/Models/dashboard.html
@@ -139,7 +139,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Support/Models/index.html b/master/coverage/framework/src/Support/Models/index.html
index c445b7fa7ed..74395988883 100644
--- a/master/coverage/framework/src/Support/Models/index.html
+++ b/master/coverage/framework/src/Support/Models/index.html
@@ -310,7 +310,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/Paginator.php.html b/master/coverage/framework/src/Support/Paginator.php.html
index 3315e53ba73..774abde47c5 100644
--- a/master/coverage/framework/src/Support/Paginator.php.html
+++ b/master/coverage/framework/src/Support/Paginator.php.html
@@ -833,7 +833,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/ReadingTime.php.html b/master/coverage/framework/src/Support/ReadingTime.php.html
index 26e6165b35d..ea365f88bef 100644
--- a/master/coverage/framework/src/Support/ReadingTime.php.html
+++ b/master/coverage/framework/src/Support/ReadingTime.php.html
@@ -483,7 +483,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/Support/dashboard.html b/master/coverage/framework/src/Support/dashboard.html
index 175881f119d..32cf6dc321a 100644
--- a/master/coverage/framework/src/Support/dashboard.html
+++ b/master/coverage/framework/src/Support/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
diff --git a/master/coverage/framework/src/Support/index.html b/master/coverage/framework/src/Support/index.html
index f3f0be8e869..e8747d764bd 100644
--- a/master/coverage/framework/src/Support/index.html
+++ b/master/coverage/framework/src/Support/index.html
@@ -350,7 +350,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/dashboard.html b/master/coverage/framework/src/dashboard.html
index 7cdb2eed664..e6ea3340593 100644
--- a/master/coverage/framework/src/dashboard.html
+++ b/master/coverage/framework/src/dashboard.html
@@ -137,7 +137,7 @@ Project Risks
@@ -224,7 +224,7 @@ Project Risks
chart.yAxis.axisLabel('Cyclomatic Complexity');
d3.select('#classComplexity svg')
- .datum(getComplexityData([[100,1,"Hyde\\Console\\Commands\\BuildRssFeedCommand<\/a>"],[100,1,"Hyde\\Console\\Commands\\BuildSearchCommand<\/a>"],[100,18,"Hyde\\Console\\Commands\\BuildSiteCommand<\/a>"],[100,1,"Hyde\\Console\\Commands\\BuildSitemapCommand<\/a>"],[100,20,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand<\/a>"],[100,10,"Hyde\\Console\\Commands\\DebugCommand<\/a>"],[100,9,"Hyde\\Console\\Commands\\MakePageCommand<\/a>"],[100,10,"Hyde\\Console\\Commands\\MakePostCommand<\/a>"],[100,1,"Hyde\\Console\\Commands\\PackageDiscoverCommand<\/a>"],[100,2,"Hyde\\Console\\Commands\\PublishConfigsCommand<\/a>"],[100,14,"Hyde\\Console\\Commands\\PublishHomepageCommand<\/a>"],[100,11,"Hyde\\Console\\Commands\\PublishViewsCommand<\/a>"],[100,6,"Hyde\\Console\\Commands\\RebuildPageCommand<\/a>"],[100,6,"Hyde\\Console\\Commands\\RouteListCommand<\/a>"],[100,7,"Hyde\\Console\\Commands\\ServeCommand<\/a>"],[100,6,"Hyde\\Console\\Commands\\ValidateCommand<\/a>"],[100,6,"Hyde\\Console\\Commands\\VendorPublishCommand<\/a>"],[100,16,"Hyde\\Console\\Concerns\\Command<\/a>"],[100,5,"Hyde\\Console\\ConsoleServiceProvider<\/a>"],[100,1,"Hyde\\Facades\\Asset<\/a>"],[100,3,"Hyde\\Facades\\Author<\/a>"],[100,9,"Hyde\\Facades\\Config<\/a>"],[100,31,"Hyde\\Facades\\Features<\/a>"],[100,11,"Hyde\\Facades\\Filesystem<\/a>"],[100,5,"Hyde\\Facades\\Meta<\/a>"],[100,4,"Hyde\\Facades\\Site<\/a>"],[100,2,"Hyde\\Foundation\\Application<\/a>"],[100,5,"Hyde\\Foundation\\Concerns\\BaseFoundationCollection<\/a>"],[100,4,"Hyde\\Foundation\\Concerns\\HydeExtension<\/a>"],[100,1,"Hyde\\Foundation\\ConsoleKernel<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Files<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Pages<\/a>"],[100,6,"Hyde\\Foundation\\Facades\\Routes<\/a>"],[100,1,"Hyde\\Foundation\\HydeCoreExtension<\/a>"],[100,5,"Hyde\\Foundation\\HydeKernel<\/a>"],[100,13,"Hyde\\Foundation\\Internal\\LoadConfiguration<\/a>"],[100,12,"Hyde\\Foundation\\Internal\\LoadYamlConfiguration<\/a>"],[100,12,"Hyde\\Foundation\\Kernel\\FileCollection<\/a>"],[100,26,"Hyde\\Foundation\\Kernel\\Filesystem<\/a>"],[100,21,"Hyde\\Foundation\\Kernel\\Hyperlinks<\/a>"],[100,8,"Hyde\\Foundation\\Kernel\\PageCollection<\/a>"],[100,7,"Hyde\\Foundation\\Kernel\\RouteCollection<\/a>"],[100,6,"Hyde\\Foundation\\PharSupport<\/a>"],[100,2,"Hyde\\Foundation\\Providers\\ConfigurationServiceProvider<\/a>"],[100,2,"Hyde\\Foundation\\Providers\\ViewServiceProvider<\/a>"],[100,4,"Hyde\\Framework\\Actions\\AnonymousViewCompiler<\/a>"],[100,20,"Hyde\\Framework\\Actions\\BladeMatterParser<\/a>"],[100,2,"Hyde\\Framework\\Actions\\ConvertsArrayToFrontMatter<\/a>"],[100,14,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText<\/a>"],[100,6,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile<\/a>"],[100,19,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile<\/a>"],[100,11,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex<\/a>"],[100,4,"Hyde\\Framework\\Actions\\GeneratesTableOfContents<\/a>"],[100,6,"Hyde\\Framework\\Actions\\MarkdownFileParser<\/a>"],[100,8,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateRssFeed<\/a>"],[100,3,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSearch<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSitemap<\/a>"],[100,9,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory<\/a>"],[100,7,"Hyde\\Framework\\Actions\\SourceFileParser<\/a>"],[100,1,"Hyde\\Framework\\Actions\\StaticPageBuilder<\/a>"],[100,0,"Hyde\\Framework\\Exceptions\\BaseUrlNotSetException<\/a>"],[100,0,"Hyde\\Framework\\Exceptions\\BuildWarning<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\FileConflictException<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\FileNotFoundException<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\RouteNotFoundException<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\UnsupportedPageTypeException<\/a>"],[100,13,"Hyde\\Framework\\Factories\\BlogPostDataFactory<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject<\/a>"],[100,0,"Hyde\\Framework\\Factories\\Concerns\\PageDataFactory<\/a>"],[100,10,"Hyde\\Framework\\Factories\\FeaturedImageFactory<\/a>"],[100,13,"Hyde\\Framework\\Factories\\HydePageDataFactory<\/a>"],[100,41,"Hyde\\Framework\\Factories\\NavigationDataFactory<\/a>"],[100,35,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage<\/a>"],[100,8,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor<\/a>"],[100,11,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask<\/a>"],[100,0,"Hyde\\Framework\\Features\\BuildTasks\\PostBuildTask<\/a>"],[100,0,"Hyde\\Framework\\Features\\BuildTasks\\PreBuildTask<\/a>"],[100,6,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage<\/a>"],[100,22,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle<\/a>"],[100,5,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement<\/a>"],[100,3,"Hyde\\Framework\\Features\\Metadata\\Elements\\MetadataElement<\/a>"],[100,5,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement<\/a>"],[100,7,"Hyde\\Framework\\Features\\Metadata\\GlobalMetadataBag<\/a>"],[100,8,"Hyde\\Framework\\Features\\Metadata\\MetadataBag<\/a>"],[100,14,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag<\/a>"],[100,8,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu<\/a>"],[100,15,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar<\/a>"],[100,4,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem<\/a>"],[100,14,"Hyde\\Framework\\Features\\Navigation\\NavItem<\/a>"],[100,3,"Hyde\\Framework\\Features\\Navigation\\NavigationData<\/a>"],[100,15,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu<\/a>"],[100,6,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator<\/a>"],[100,16,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator<\/a>"],[100,14,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator<\/a>"],[100,2,"Hyde\\Framework\\HydeServiceProvider<\/a>"],[100,11,"Hyde\\Framework\\Services\\AssetService<\/a>"],[100,6,"Hyde\\Framework\\Services\\BuildService<\/a>"],[100,26,"Hyde\\Framework\\Services\\BuildTaskService<\/a>"],[100,41,"Hyde\\Framework\\Services\\MarkdownService<\/a>"],[100,26,"Hyde\\Framework\\Services\\ValidationService<\/a>"],[100,5,"Hyde\\Framework\\Services\\ViewDiffService<\/a>"],[100,7,"Hyde\\Framework\\Views\\Components\\BreadcrumbsComponent<\/a>"],[100,2,"Hyde\\Framework\\Views\\Components\\LinkComponent<\/a>"],[100,3,"Hyde\\Hyde<\/a>"],[100,1,"Hyde\\Markdown\\MarkdownConverter<\/a>"],[100,9,"Hyde\\Markdown\\Models\\FrontMatter<\/a>"],[100,9,"Hyde\\Markdown\\Models\\Markdown<\/a>"],[100,6,"Hyde\\Markdown\\Models\\MarkdownDocument<\/a>"],[100,10,"Hyde\\Markdown\\Processing\\BladeDownProcessor<\/a>"],[100,16,"Hyde\\Markdown\\Processing\\CodeblockFilepathProcessor<\/a>"],[100,8,"Hyde\\Markdown\\Processing\\ColoredBlockquotes<\/a>"],[100,15,"Hyde\\Markdown\\Processing\\ShortcodeProcessor<\/a>"],[100,3,"Hyde\\Pages\\BladePage<\/a>"],[100,6,"Hyde\\Pages\\Concerns\\BaseMarkdownPage<\/a>"],[100,39,"Hyde\\Pages\\Concerns\\HydePage<\/a>"],[100,10,"Hyde\\Pages\\DocumentationPage<\/a>"],[100,3,"Hyde\\Pages\\HtmlPage<\/a>"],[100,15,"Hyde\\Pages\\InMemoryPage<\/a>"],[100,0,"Hyde\\Pages\\MarkdownPage<\/a>"],[100,2,"Hyde\\Pages\\MarkdownPost<\/a>"],[100,15,"Hyde\\Support\\BuildWarnings<\/a>"],[100,5,"Hyde\\Support\\DataCollections<\/a>"],[100,1,"Hyde\\Support\\Facades\\Render<\/a>"],[100,14,"Hyde\\Support\\Filesystem\\MediaFile<\/a>"],[100,8,"Hyde\\Support\\Filesystem\\ProjectFile<\/a>"],[100,3,"Hyde\\Support\\Filesystem\\SourceFile<\/a>"],[100,12,"Hyde\\Support\\Includes<\/a>"],[100,2,"Hyde\\Support\\Models\\DateString<\/a>"],[100,6,"Hyde\\Support\\Models\\Redirect<\/a>"],[100,9,"Hyde\\Support\\Models\\RenderData<\/a>"],[100,12,"Hyde\\Support\\Models\\Route<\/a>"],[100,5,"Hyde\\Support\\Models\\RouteKey<\/a>"],[100,5,"Hyde\\Support\\Models\\RouteList<\/a>"],[100,10,"Hyde\\Support\\Models\\RouteListItem<\/a>"],[100,23,"Hyde\\Support\\Models\\ValidationResult<\/a>"],[100,36,"Hyde\\Support\\Paginator<\/a>"],[100,14,"Hyde\\Support\\ReadingTime<\/a>"],[100,3,"Hyde\\Console\\Concerns\\AsksToRebuildSite<\/a>"],[100,7,"Hyde\\Foundation\\Concerns\\BootsHydeKernel<\/a>"],[100,8,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem<\/a>"],[100,6,"Hyde\\Foundation\\Concerns\\ForwardsHyperlinks<\/a>"],[100,5,"Hyde\\Foundation\\Concerns\\HandlesFoundationCollections<\/a>"],[100,7,"Hyde\\Foundation\\Concerns\\ImplementsStringHelpers<\/a>"],[100,10,"Hyde\\Foundation\\Concerns\\ManagesExtensions<\/a>"],[100,12,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel<\/a>"],[100,4,"Hyde\\Foundation\\Concerns\\ManagesViewData<\/a>"],[100,5,"Hyde\\Framework\\Concerns\\InteractsWithDirectories<\/a>"],[100,4,"Hyde\\Framework\\Concerns\\InteractsWithFrontMatter<\/a>"],[100,7,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem<\/a>"],[100,5,"Hyde\\Framework\\Concerns\\Internal\\MockableFeatures<\/a>"],[100,16,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter<\/a>"],[100,10,"Hyde\\Framework\\Concerns\\RegistersFileLocations<\/a>"],[100,4,"Hyde\\Framework\\Concerns\\TracksExecutionTime<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\ValidatesExistence<\/a>"],[100,5,"Hyde\\Framework\\Factories\\Concerns\\HasFactory<\/a>"],[100,3,"Hyde\\Support\\Concerns\\Serializable<\/a>"]], 'Class Complexity'))
+ .datum(getComplexityData([[100,1,"Hyde\\Console\\Commands\\BuildRssFeedCommand<\/a>"],[100,1,"Hyde\\Console\\Commands\\BuildSearchCommand<\/a>"],[100,18,"Hyde\\Console\\Commands\\BuildSiteCommand<\/a>"],[100,1,"Hyde\\Console\\Commands\\BuildSitemapCommand<\/a>"],[100,20,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand<\/a>"],[100,10,"Hyde\\Console\\Commands\\DebugCommand<\/a>"],[100,9,"Hyde\\Console\\Commands\\MakePageCommand<\/a>"],[100,10,"Hyde\\Console\\Commands\\MakePostCommand<\/a>"],[100,1,"Hyde\\Console\\Commands\\PackageDiscoverCommand<\/a>"],[100,2,"Hyde\\Console\\Commands\\PublishConfigsCommand<\/a>"],[100,14,"Hyde\\Console\\Commands\\PublishHomepageCommand<\/a>"],[100,11,"Hyde\\Console\\Commands\\PublishViewsCommand<\/a>"],[100,6,"Hyde\\Console\\Commands\\RebuildPageCommand<\/a>"],[100,6,"Hyde\\Console\\Commands\\RouteListCommand<\/a>"],[100,7,"Hyde\\Console\\Commands\\ServeCommand<\/a>"],[100,6,"Hyde\\Console\\Commands\\ValidateCommand<\/a>"],[100,6,"Hyde\\Console\\Commands\\VendorPublishCommand<\/a>"],[100,16,"Hyde\\Console\\Concerns\\Command<\/a>"],[100,5,"Hyde\\Console\\ConsoleServiceProvider<\/a>"],[100,1,"Hyde\\Facades\\Asset<\/a>"],[100,3,"Hyde\\Facades\\Author<\/a>"],[100,9,"Hyde\\Facades\\Config<\/a>"],[100,31,"Hyde\\Facades\\Features<\/a>"],[100,11,"Hyde\\Facades\\Filesystem<\/a>"],[100,5,"Hyde\\Facades\\Meta<\/a>"],[100,4,"Hyde\\Facades\\Site<\/a>"],[100,2,"Hyde\\Foundation\\Application<\/a>"],[100,5,"Hyde\\Foundation\\Concerns\\BaseFoundationCollection<\/a>"],[100,4,"Hyde\\Foundation\\Concerns\\HydeExtension<\/a>"],[100,1,"Hyde\\Foundation\\ConsoleKernel<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Files<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Pages<\/a>"],[100,6,"Hyde\\Foundation\\Facades\\Routes<\/a>"],[100,1,"Hyde\\Foundation\\HydeCoreExtension<\/a>"],[100,5,"Hyde\\Foundation\\HydeKernel<\/a>"],[100,13,"Hyde\\Foundation\\Internal\\LoadConfiguration<\/a>"],[100,12,"Hyde\\Foundation\\Internal\\LoadYamlConfiguration<\/a>"],[100,12,"Hyde\\Foundation\\Kernel\\FileCollection<\/a>"],[100,26,"Hyde\\Foundation\\Kernel\\Filesystem<\/a>"],[100,21,"Hyde\\Foundation\\Kernel\\Hyperlinks<\/a>"],[100,8,"Hyde\\Foundation\\Kernel\\PageCollection<\/a>"],[100,7,"Hyde\\Foundation\\Kernel\\RouteCollection<\/a>"],[100,6,"Hyde\\Foundation\\PharSupport<\/a>"],[100,2,"Hyde\\Foundation\\Providers\\ConfigurationServiceProvider<\/a>"],[100,2,"Hyde\\Foundation\\Providers\\ViewServiceProvider<\/a>"],[100,4,"Hyde\\Framework\\Actions\\AnonymousViewCompiler<\/a>"],[100,20,"Hyde\\Framework\\Actions\\BladeMatterParser<\/a>"],[100,2,"Hyde\\Framework\\Actions\\ConvertsArrayToFrontMatter<\/a>"],[100,14,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText<\/a>"],[100,6,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile<\/a>"],[100,19,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile<\/a>"],[100,11,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex<\/a>"],[100,4,"Hyde\\Framework\\Actions\\GeneratesTableOfContents<\/a>"],[100,6,"Hyde\\Framework\\Actions\\MarkdownFileParser<\/a>"],[100,8,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateRssFeed<\/a>"],[100,3,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSearch<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSitemap<\/a>"],[100,9,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory<\/a>"],[100,7,"Hyde\\Framework\\Actions\\SourceFileParser<\/a>"],[100,1,"Hyde\\Framework\\Actions\\StaticPageBuilder<\/a>"],[100,0,"Hyde\\Framework\\Exceptions\\BaseUrlNotSetException<\/a>"],[100,0,"Hyde\\Framework\\Exceptions\\BuildWarning<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\FileConflictException<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\FileNotFoundException<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\RouteNotFoundException<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\UnsupportedPageTypeException<\/a>"],[100,13,"Hyde\\Framework\\Factories\\BlogPostDataFactory<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject<\/a>"],[100,0,"Hyde\\Framework\\Factories\\Concerns\\PageDataFactory<\/a>"],[100,10,"Hyde\\Framework\\Factories\\FeaturedImageFactory<\/a>"],[100,13,"Hyde\\Framework\\Factories\\HydePageDataFactory<\/a>"],[100,40,"Hyde\\Framework\\Factories\\NavigationDataFactory<\/a>"],[100,35,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage<\/a>"],[100,8,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor<\/a>"],[100,11,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask<\/a>"],[100,0,"Hyde\\Framework\\Features\\BuildTasks\\PostBuildTask<\/a>"],[100,0,"Hyde\\Framework\\Features\\BuildTasks\\PreBuildTask<\/a>"],[100,6,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage<\/a>"],[100,22,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle<\/a>"],[100,5,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement<\/a>"],[100,3,"Hyde\\Framework\\Features\\Metadata\\Elements\\MetadataElement<\/a>"],[100,5,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement<\/a>"],[100,7,"Hyde\\Framework\\Features\\Metadata\\GlobalMetadataBag<\/a>"],[100,8,"Hyde\\Framework\\Features\\Metadata\\MetadataBag<\/a>"],[100,14,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag<\/a>"],[100,8,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu<\/a>"],[100,15,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar<\/a>"],[100,4,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem<\/a>"],[100,14,"Hyde\\Framework\\Features\\Navigation\\NavItem<\/a>"],[100,3,"Hyde\\Framework\\Features\\Navigation\\NavigationData<\/a>"],[100,15,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu<\/a>"],[100,6,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator<\/a>"],[100,16,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator<\/a>"],[100,14,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator<\/a>"],[100,2,"Hyde\\Framework\\HydeServiceProvider<\/a>"],[100,11,"Hyde\\Framework\\Services\\AssetService<\/a>"],[100,6,"Hyde\\Framework\\Services\\BuildService<\/a>"],[100,26,"Hyde\\Framework\\Services\\BuildTaskService<\/a>"],[100,41,"Hyde\\Framework\\Services\\MarkdownService<\/a>"],[100,26,"Hyde\\Framework\\Services\\ValidationService<\/a>"],[100,5,"Hyde\\Framework\\Services\\ViewDiffService<\/a>"],[100,7,"Hyde\\Framework\\Views\\Components\\BreadcrumbsComponent<\/a>"],[100,2,"Hyde\\Framework\\Views\\Components\\LinkComponent<\/a>"],[100,3,"Hyde\\Hyde<\/a>"],[100,1,"Hyde\\Markdown\\MarkdownConverter<\/a>"],[100,9,"Hyde\\Markdown\\Models\\FrontMatter<\/a>"],[100,9,"Hyde\\Markdown\\Models\\Markdown<\/a>"],[100,6,"Hyde\\Markdown\\Models\\MarkdownDocument<\/a>"],[100,10,"Hyde\\Markdown\\Processing\\BladeDownProcessor<\/a>"],[100,16,"Hyde\\Markdown\\Processing\\CodeblockFilepathProcessor<\/a>"],[100,8,"Hyde\\Markdown\\Processing\\ColoredBlockquotes<\/a>"],[100,15,"Hyde\\Markdown\\Processing\\ShortcodeProcessor<\/a>"],[100,3,"Hyde\\Pages\\BladePage<\/a>"],[100,6,"Hyde\\Pages\\Concerns\\BaseMarkdownPage<\/a>"],[100,39,"Hyde\\Pages\\Concerns\\HydePage<\/a>"],[100,10,"Hyde\\Pages\\DocumentationPage<\/a>"],[100,3,"Hyde\\Pages\\HtmlPage<\/a>"],[100,15,"Hyde\\Pages\\InMemoryPage<\/a>"],[100,0,"Hyde\\Pages\\MarkdownPage<\/a>"],[100,2,"Hyde\\Pages\\MarkdownPost<\/a>"],[100,15,"Hyde\\Support\\BuildWarnings<\/a>"],[100,5,"Hyde\\Support\\DataCollections<\/a>"],[100,1,"Hyde\\Support\\Facades\\Render<\/a>"],[100,14,"Hyde\\Support\\Filesystem\\MediaFile<\/a>"],[100,8,"Hyde\\Support\\Filesystem\\ProjectFile<\/a>"],[100,3,"Hyde\\Support\\Filesystem\\SourceFile<\/a>"],[100,12,"Hyde\\Support\\Includes<\/a>"],[100,2,"Hyde\\Support\\Models\\DateString<\/a>"],[100,6,"Hyde\\Support\\Models\\Redirect<\/a>"],[100,9,"Hyde\\Support\\Models\\RenderData<\/a>"],[100,12,"Hyde\\Support\\Models\\Route<\/a>"],[100,5,"Hyde\\Support\\Models\\RouteKey<\/a>"],[100,5,"Hyde\\Support\\Models\\RouteList<\/a>"],[100,10,"Hyde\\Support\\Models\\RouteListItem<\/a>"],[100,23,"Hyde\\Support\\Models\\ValidationResult<\/a>"],[100,36,"Hyde\\Support\\Paginator<\/a>"],[100,14,"Hyde\\Support\\ReadingTime<\/a>"],[100,3,"Hyde\\Console\\Concerns\\AsksToRebuildSite<\/a>"],[100,7,"Hyde\\Foundation\\Concerns\\BootsHydeKernel<\/a>"],[100,8,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem<\/a>"],[100,6,"Hyde\\Foundation\\Concerns\\ForwardsHyperlinks<\/a>"],[100,5,"Hyde\\Foundation\\Concerns\\HandlesFoundationCollections<\/a>"],[100,7,"Hyde\\Foundation\\Concerns\\ImplementsStringHelpers<\/a>"],[100,10,"Hyde\\Foundation\\Concerns\\ManagesExtensions<\/a>"],[100,12,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel<\/a>"],[100,4,"Hyde\\Foundation\\Concerns\\ManagesViewData<\/a>"],[100,5,"Hyde\\Framework\\Concerns\\InteractsWithDirectories<\/a>"],[100,4,"Hyde\\Framework\\Concerns\\InteractsWithFrontMatter<\/a>"],[100,7,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem<\/a>"],[100,5,"Hyde\\Framework\\Concerns\\Internal\\MockableFeatures<\/a>"],[100,16,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter<\/a>"],[100,10,"Hyde\\Framework\\Concerns\\RegistersFileLocations<\/a>"],[100,4,"Hyde\\Framework\\Concerns\\TracksExecutionTime<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\ValidatesExistence<\/a>"],[100,5,"Hyde\\Framework\\Factories\\Concerns\\HasFactory<\/a>"],[100,3,"Hyde\\Support\\Concerns\\Serializable<\/a>"]], 'Class Complexity'))
.transition()
.duration(500)
.call(chart);
@@ -248,7 +248,7 @@ Project Risks
chart.yAxis.axisLabel('Method Complexity');
d3.select('#methodComplexity svg')
- .datum(getComplexityData([[100,1,"Hyde\\Console\\Commands\\BuildRssFeedCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\BuildSearchCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\BuildSiteCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\BuildSiteCommand::configureBuildTaskService<\/a>"],[100,3,"Hyde\\Console\\Commands\\BuildSiteCommand::runPreBuildActions<\/a>"],[100,4,"Hyde\\Console\\Commands\\BuildSiteCommand::runPostBuildActions<\/a>"],[100,2,"Hyde\\Console\\Commands\\BuildSiteCommand::printFinishMessage<\/a>"],[100,2,"Hyde\\Console\\Commands\\BuildSiteCommand::runNodeCommand<\/a>"],[100,2,"Hyde\\Console\\Commands\\BuildSiteCommand::hasWarnings<\/a>"],[100,3,"Hyde\\Console\\Commands\\BuildSiteCommand::getExitCode<\/a>"],[100,1,"Hyde\\Console\\Commands\\BuildSitemapCommand::handle<\/a>"],[100,3,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::getPageDirectories<\/a>"],[100,1,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::getValidatedName<\/a>"],[100,2,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::validateName<\/a>"],[100,5,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::validateDirectoryCanBeUsed<\/a>"],[100,3,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::validateSubdirectoryCanBeUsed<\/a>"],[100,1,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::assembleSubdirectoryPath<\/a>"],[100,2,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::directoryContainsFiles<\/a>"],[100,2,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::updateConfigurationFile<\/a>"],[100,2,"Hyde\\Console\\Commands\\DebugCommand::__construct<\/a>"],[100,5,"Hyde\\Console\\Commands\\DebugCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\DebugCommand::printVerbosePathInformation<\/a>"],[100,2,"Hyde\\Console\\Commands\\DebugCommand::printEnabledFeatures<\/a>"],[100,1,"Hyde\\Console\\Commands\\MakePageCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\MakePageCommand::validateOptions<\/a>"],[100,1,"Hyde\\Console\\Commands\\MakePageCommand::getTitle<\/a>"],[100,1,"Hyde\\Console\\Commands\\MakePageCommand::getQualifiedPageType<\/a>"],[100,1,"Hyde\\Console\\Commands\\MakePageCommand::getSelectedType<\/a>"],[100,1,"Hyde\\Console\\Commands\\MakePageCommand::getTypeSelection<\/a>"],[100,3,"Hyde\\Console\\Commands\\MakePageCommand::getTypeOption<\/a>"],[100,2,"Hyde\\Console\\Commands\\MakePostCommand::handle<\/a>"],[100,2,"Hyde\\Console\\Commands\\MakePostCommand::getTitle<\/a>"],[100,1,"Hyde\\Console\\Commands\\MakePostCommand::getSelections<\/a>"],[100,2,"Hyde\\Console\\Commands\\MakePostCommand::displaySelections<\/a>"],[100,3,"Hyde\\Console\\Commands\\MakePostCommand::createPostFile<\/a>"],[100,1,"Hyde\\Console\\Commands\\PackageDiscoverCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishConfigsCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishConfigsCommand::parseTagFromSelection<\/a>"],[100,5,"Hyde\\Console\\Commands\\PublishHomepageCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishHomepageCommand::parseSelection<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishHomepageCommand::promptForHomepage<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishHomepageCommand::formatPublishableChoices<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishHomepageCommand::getTemplateOptions<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishHomepageCommand::parseChoiceIntoKey<\/a>"],[100,3,"Hyde\\Console\\Commands\\PublishHomepageCommand::canExistingFileBeOverwritten<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishHomepageCommand::isTheExistingFileADefaultOne<\/a>"],[100,4,"Hyde\\Console\\Commands\\PublishViewsCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishViewsCommand::publishOption<\/a>"],[100,2,"Hyde\\Console\\Commands\\PublishViewsCommand::promptForCategory<\/a>"],[100,2,"Hyde\\Console\\Commands\\PublishViewsCommand::formatPublishableChoices<\/a>"],[100,2,"Hyde\\Console\\Commands\\PublishViewsCommand::parseChoiceIntoKey<\/a>"],[100,2,"Hyde\\Console\\Commands\\RebuildPageCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\RebuildPageCommand::getNormalizedPathString<\/a>"],[100,3,"Hyde\\Console\\Commands\\RebuildPageCommand::makeBuildTask<\/a>"],[100,1,"Hyde\\Console\\Commands\\RouteListCommand::handle<\/a>"],[100,5,"Hyde\\Console\\Commands\\RouteListCommand::routeListClass<\/a>"],[100,1,"Hyde\\Console\\Commands\\ServeCommand::handle<\/a>"],[100,2,"Hyde\\Console\\Commands\\ServeCommand::getPortSelection<\/a>"],[100,2,"Hyde\\Console\\Commands\\ServeCommand::getHostSelection<\/a>"],[100,1,"Hyde\\Console\\Commands\\ServeCommand::getExecutablePath<\/a>"],[100,1,"Hyde\\Console\\Commands\\ServeCommand::runServerProcess<\/a>"],[100,1,"Hyde\\Console\\Commands\\ValidateCommand::__construct<\/a>"],[100,2,"Hyde\\Console\\Commands\\ValidateCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\ValidateCommand::runCheck<\/a>"],[100,1,"Hyde\\Console\\Commands\\ValidateCommand::getCheckTime<\/a>"],[100,1,"Hyde\\Console\\Commands\\ValidateCommand::timeTotal<\/a>"],[100,2,"Hyde\\Console\\Commands\\VendorPublishCommand::handle<\/a>"],[100,2,"Hyde\\Console\\Commands\\VendorPublishCommand::promptForProviderOrTag<\/a>"],[100,1,"Hyde\\Console\\Commands\\VendorPublishCommand::status<\/a>"],[100,1,"Hyde\\Console\\Commands\\VendorPublishCommand::normalizePath<\/a>"],[100,2,"Hyde\\Console\\Concerns\\Command::handle<\/a>"],[100,1,"Hyde\\Console\\Concerns\\Command::safeHandle<\/a>"],[100,3,"Hyde\\Console\\Concerns\\Command::handleException<\/a>"],[100,3,"Hyde\\Console\\Concerns\\Command::fileLink<\/a>"],[100,1,"Hyde\\Console\\Concerns\\Command::infoComment<\/a>"],[100,1,"Hyde\\Console\\Concerns\\Command::gray<\/a>"],[100,1,"Hyde\\Console\\Concerns\\Command::inlineGray<\/a>"],[100,1,"Hyde\\Console\\Concerns\\Command::href<\/a>"],[100,1,"Hyde\\Console\\Concerns\\Command::indentedLine<\/a>"],[100,2,"Hyde\\Console\\Concerns\\Command::askForString<\/a>"],[100,1,"Hyde\\Console\\ConsoleServiceProvider::register<\/a>"],[100,3,"Hyde\\Console\\ConsoleServiceProvider::logo<\/a>"],[100,1,"Hyde\\Console\\ConsoleServiceProvider::boot<\/a>"],[100,1,"Hyde\\Facades\\Asset::getFacadeAccessor<\/a>"],[100,1,"Hyde\\Facades\\Author::create<\/a>"],[100,1,"Hyde\\Facades\\Author::get<\/a>"],[100,1,"Hyde\\Facades\\Author::all<\/a>"],[100,1,"Hyde\\Facades\\Config::getArray<\/a>"],[100,1,"Hyde\\Facades\\Config::getString<\/a>"],[100,1,"Hyde\\Facades\\Config::getInt<\/a>"],[100,1,"Hyde\\Facades\\Config::getBool<\/a>"],[100,1,"Hyde\\Facades\\Config::getFloat<\/a>"],[100,2,"Hyde\\Facades\\Config::getNullableString<\/a>"],[100,2,"Hyde\\Facades\\Config::validated<\/a>"],[100,1,"Hyde\\Facades\\Features::enabled<\/a>"],[100,1,"Hyde\\Facades\\Features::hasHtmlPages<\/a>"],[100,1,"Hyde\\Facades\\Features::hasBladePages<\/a>"],[100,1,"Hyde\\Facades\\Features::hasMarkdownPages<\/a>"],[100,1,"Hyde\\Facades\\Features::hasMarkdownPosts<\/a>"],[100,1,"Hyde\\Facades\\Features::hasDocumentationPages<\/a>"],[100,3,"Hyde\\Facades\\Features::hasDocumentationSearch<\/a>"],[100,1,"Hyde\\Facades\\Features::hasDarkmode<\/a>"],[100,3,"Hyde\\Facades\\Features::hasTorchlight<\/a>"],[100,1,"Hyde\\Facades\\Features::htmlPages<\/a>"],[100,1,"Hyde\\Facades\\Features::bladePages<\/a>"],[100,1,"Hyde\\Facades\\Features::markdownPages<\/a>"],[100,1,"Hyde\\Facades\\Features::markdownPosts<\/a>"],[100,1,"Hyde\\Facades\\Features::documentationPages<\/a>"],[100,1,"Hyde\\Facades\\Features::documentationSearch<\/a>"],[100,1,"Hyde\\Facades\\Features::darkmode<\/a>"],[100,1,"Hyde\\Facades\\Features::torchlight<\/a>"],[100,3,"Hyde\\Facades\\Features::sitemap<\/a>"],[100,5,"Hyde\\Facades\\Features::rss<\/a>"],[100,1,"Hyde\\Facades\\Features::toArray<\/a>"],[100,1,"Hyde\\Facades\\Features::getDefaultOptions<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::basePath<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::absolutePath<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::relativePath<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::smartGlob<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::touch<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::unlink<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::unlinkIfExists<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::getContents<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::putContents<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::filesystem<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::kernel<\/a>"],[100,1,"Hyde\\Facades\\Meta::name<\/a>"],[100,1,"Hyde\\Facades\\Meta::property<\/a>"],[100,1,"Hyde\\Facades\\Meta::link<\/a>"],[100,1,"Hyde\\Facades\\Meta::get<\/a>"],[100,1,"Hyde\\Facades\\Meta::render<\/a>"],[100,1,"Hyde\\Facades\\Site::url<\/a>"],[100,1,"Hyde\\Facades\\Site::name<\/a>"],[100,1,"Hyde\\Facades\\Site::language<\/a>"],[100,1,"Hyde\\Facades\\Site::metadata<\/a>"],[100,1,"Hyde\\Foundation\\Application::registerBaseBindings<\/a>"],[100,1,"Hyde\\Foundation\\Application::getCachedPackagesPath<\/a>"],[100,0,"Hyde\\Foundation\\Concerns\\BaseFoundationCollection::runDiscovery<\/a>"],[100,0,"Hyde\\Foundation\\Concerns\\BaseFoundationCollection::runExtensionHandlers<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\BaseFoundationCollection::init<\/a>"],[100,2,"Hyde\\Foundation\\Concerns\\BaseFoundationCollection::boot<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\BaseFoundationCollection::__construct<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\BaseFoundationCollection::setKernel<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\HydeExtension::getPageClasses<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\HydeExtension::discoverFiles<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\HydeExtension::discoverPages<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\HydeExtension::discoverRoutes<\/a>"],[100,1,"Hyde\\Foundation\\ConsoleKernel::bootstrappers<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Files::getFacadeRoot<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Pages::getFacadeRoot<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Routes::getFacadeRoot<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Routes::exists<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Routes::get<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Routes::getOrFail<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Routes::all<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Routes::current<\/a>"],[100,1,"Hyde\\Foundation\\HydeCoreExtension::getPageClasses<\/a>"],[100,1,"Hyde\\Foundation\\HydeKernel::__construct<\/a>"],[100,1,"Hyde\\Foundation\\HydeKernel::version<\/a>"],[100,1,"Hyde\\Foundation\\HydeKernel::features<\/a>"],[100,1,"Hyde\\Foundation\\HydeKernel::hasFeature<\/a>"],[100,1,"Hyde\\Foundation\\HydeKernel::toArray<\/a>"],[100,1,"Hyde\\Foundation\\Internal\\LoadConfiguration::getConfigurationFiles<\/a>"],[100,1,"Hyde\\Foundation\\Internal\\LoadConfiguration::loadConfigurationFiles<\/a>"],[100,2,"Hyde\\Foundation\\Internal\\LoadConfiguration::mergeConfigurationFiles<\/a>"],[100,1,"Hyde\\Foundation\\Internal\\LoadConfiguration::mergeConfigurationFile<\/a>"],[100,3,"Hyde\\Foundation\\Internal\\LoadConfiguration::providePharSupportIfNeeded<\/a>"],[100,5,"Hyde\\Foundation\\Internal\\LoadConfiguration::loadRuntimeConfiguration<\/a>"],[100,2,"Hyde\\Foundation\\Internal\\LoadYamlConfiguration::bootstrap<\/a>"],[100,2,"Hyde\\Foundation\\Internal\\LoadYamlConfiguration::hasYamlConfigFile<\/a>"],[100,1,"Hyde\\Foundation\\Internal\\LoadYamlConfiguration::getYaml<\/a>"],[100,2,"Hyde\\Foundation\\Internal\\LoadYamlConfiguration::getFile<\/a>"],[100,3,"Hyde\\Foundation\\Internal\\LoadYamlConfiguration::mergeParsedConfiguration<\/a>"],[100,1,"Hyde\\Foundation\\Internal\\LoadYamlConfiguration::mergeConfiguration<\/a>"],[100,1,"Hyde\\Foundation\\Internal\\LoadYamlConfiguration::configurationContainsNamespaces<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\FileCollection::addFile<\/a>"],[100,3,"Hyde\\Foundation\\Kernel\\FileCollection::runDiscovery<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\FileCollection::runExtensionHandlers<\/a>"],[100,3,"Hyde\\Foundation\\Kernel\\FileCollection::discoverFilesFor<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\FileCollection::getFile<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\FileCollection::getFiles<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\Filesystem::__construct<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\Filesystem::getBasePath<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\Filesystem::path<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\Filesystem::pathToAbsolute<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\Filesystem::pathToRelative<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\Filesystem::mediaPath<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\Filesystem::sitePath<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\Filesystem::siteMediaPath<\/a>"],[100,3,"Hyde\\Foundation\\Kernel\\Filesystem::vendorPath<\/a>"],[100,3,"Hyde\\Foundation\\Kernel\\Filesystem::touch<\/a>"],[100,3,"Hyde\\Foundation\\Kernel\\Filesystem::unlink<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\Filesystem::unlinkIfExists<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\Filesystem::smartGlob<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\Hyperlinks::__construct<\/a>"],[100,5,"Hyde\\Foundation\\Kernel\\Hyperlinks::formatLink<\/a>"],[100,5,"Hyde\\Foundation\\Kernel\\Hyperlinks::relativeLink<\/a>"],[100,3,"Hyde\\Foundation\\Kernel\\Hyperlinks::mediaLink<\/a>"],[100,4,"Hyde\\Foundation\\Kernel\\Hyperlinks::asset<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\Hyperlinks::hasSiteUrl<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\Hyperlinks::url<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\PageCollection::addPage<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\PageCollection::runDiscovery<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\PageCollection::runExtensionHandlers<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\PageCollection::parsePage<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\PageCollection::getPage<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\PageCollection::getPages<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\RouteCollection::addRoute<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\RouteCollection::runDiscovery<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\RouteCollection::runExtensionHandlers<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\RouteCollection::getRoute<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\RouteCollection::getRoutes<\/a>"],[100,1,"Hyde\\Foundation\\PharSupport::mock<\/a>"],[100,1,"Hyde\\Foundation\\PharSupport::clearMocks<\/a>"],[100,1,"Hyde\\Foundation\\PharSupport::running<\/a>"],[100,1,"Hyde\\Foundation\\PharSupport::hasVendorDirectory<\/a>"],[100,2,"Hyde\\Foundation\\PharSupport::vendorPath<\/a>"],[100,1,"Hyde\\Foundation\\Providers\\ConfigurationServiceProvider::register<\/a>"],[100,1,"Hyde\\Foundation\\Providers\\ConfigurationServiceProvider::boot<\/a>"],[100,1,"Hyde\\Foundation\\Providers\\ViewServiceProvider::register<\/a>"],[100,1,"Hyde\\Foundation\\Providers\\ViewServiceProvider::boot<\/a>"],[100,1,"Hyde\\Framework\\Actions\\AnonymousViewCompiler::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\AnonymousViewCompiler::__construct<\/a>"],[100,2,"Hyde\\Framework\\Actions\\AnonymousViewCompiler::__invoke<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::parseFile<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::parseString<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::get<\/a>"],[100,3,"Hyde\\Framework\\Actions\\BladeMatterParser::parse<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::lineMatchesFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::extractKey<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::extractValue<\/a>"],[100,3,"Hyde\\Framework\\Actions\\BladeMatterParser::getValueWithType<\/a>"],[100,5,"Hyde\\Framework\\Actions\\BladeMatterParser::parseArrayString<\/a>"],[100,2,"Hyde\\Framework\\Actions\\BladeMatterParser::isValueArrayString<\/a>"],[100,2,"Hyde\\Framework\\Actions\\ConvertsArrayToFrontMatter::execute<\/a>"],[100,1,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::execute<\/a>"],[100,2,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::applyRegexTransformations<\/a>"],[100,2,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::applyStringTransformations<\/a>"],[100,5,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::removeTables<\/a>"],[100,3,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::removeBlockquotes<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile::__construct<\/a>"],[100,3,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile::save<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile::toArray<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile::getIdentifier<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::save<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::parseTitle<\/a>"],[100,2,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::fileName<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::normalizeSubdirectory<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::makeOutputPath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::createBladeFile<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::createMarkdownFile<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::createDocumentationFile<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::formatIdentifier<\/a>"],[100,2,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::validateType<\/a>"],[100,3,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::failIfFileCannotBeSaved<\/a>"],[100,2,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::getBladePageContent<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::getMarkdownPageContent<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::__construct<\/a>"],[100,2,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::run<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::generatePageEntry<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::save<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::getSearchContentForDocument<\/a>"],[100,3,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::formatDestination<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::getPath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesTableOfContents::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesTableOfContents::execute<\/a>"],[100,2,"Hyde\\Framework\\Actions\\GeneratesTableOfContents::extractTableOfContents<\/a>"],[100,1,"Hyde\\Framework\\Actions\\MarkdownFileParser::parse<\/a>"],[100,4,"Hyde\\Framework\\Actions\\MarkdownFileParser::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\MarkdownFileParser::get<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::handle<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::hashOutputPath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::hashSourcePath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::getManifestPath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::jsonEncodeOutput<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::setOutput<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateRssFeed::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateRssFeed::printFinishMessage<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSearch::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSearch::printFinishMessage<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSitemap::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSitemap::printFinishMessage<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::printFinishMessage<\/a>"],[100,3,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::isItSafeToCleanOutputDirectory<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::isOutputDirectoryWhitelisted<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::askIfUnsafeDirectoryShouldBeEmptied<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::safeOutputDirectories<\/a>"],[100,1,"Hyde\\Framework\\Actions\\SourceFileParser::__construct<\/a>"],[100,3,"Hyde\\Framework\\Actions\\SourceFileParser::constructPage<\/a>"],[100,1,"Hyde\\Framework\\Actions\\SourceFileParser::parseBladePage<\/a>"],[100,1,"Hyde\\Framework\\Actions\\SourceFileParser::parseMarkdownPage<\/a>"],[100,1,"Hyde\\Framework\\Actions\\SourceFileParser::get<\/a>"],[100,1,"Hyde\\Framework\\Actions\\StaticPageBuilder::handle<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\FileConflictException::__construct<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\FileNotFoundException::__construct<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\RouteNotFoundException::__construct<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\UnsupportedPageTypeException::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeDescription<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeCategory<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeDate<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeAuthor<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeImage<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::getTruncatedMarkdown<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::getMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject::toArray<\/a>"],[100,0,"Hyde\\Framework\\Factories\\Concerns\\PageDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::make<\/a>"],[100,3,"Hyde\\Framework\\Factories\\FeaturedImageFactory::makeSource<\/a>"],[100,2,"Hyde\\Framework\\Factories\\FeaturedImageFactory::normalizeLocalImagePath<\/a>"],[100,2,"Hyde\\Framework\\Factories\\FeaturedImageFactory::getStringMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::makeTitle<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::makeNavigation<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleForPage<\/a>"],[100,4,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleFromMarkdownHeadings<\/a>"],[100,3,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleFromParentIdentifier<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::getMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeLabel<\/a>"],[100,3,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeGroup<\/a>"],[100,4,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeHidden<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::makePriority<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForLabelInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForGroupInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForHiddenInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::isPageHiddenInNavigationConfiguration<\/a>"],[100,4,"Hyde\\Framework\\Factories\\NavigationDataFactory::isNonDocumentationPageInHiddenSubdirectory<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForLabelInConfig<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInConfigs<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInSidebarConfig<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInNavigationConfig<\/a>"],[100,3,"Hyde\\Framework\\Factories\\NavigationDataFactory::parseNavigationPriorityConfig<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::canUseSubdirectoryForGroups<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::defaultGroup<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::pageIsInSubdirectory<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getSubdirectoryName<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getSubdirectoryConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::isInstanceOf<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::invert<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::offset<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getMatter<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::__toString<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getSource<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::setSource<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getContentLength<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getType<\/a>"],[100,3,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getMetadataArray<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getAltText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getTitleText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getAuthorName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getAuthorUrl<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getCopyrightText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getLicenseName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getLicenseUrl<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasAltText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasTitleText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasAuthorName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasAuthorUrl<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasCopyrightText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasLicenseName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasLicenseUrl<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::has<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getContentLengthForLocalImage<\/a>"],[100,3,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getContentLengthForRemoteImage<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::isRemote<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::__construct<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::getOrCreate<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::get<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::all<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::getName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::findUsername<\/a>"],[100,0,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::handle<\/a>"],[100,4,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::run<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::printStartMessage<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::printFinishMessage<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::getMessage<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::write<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::writeln<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::createdSiteFile<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::withExecutionTime<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::generate<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::compile<\/a>"],[100,2,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::enabled<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::routeKey<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::make<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::renderHeader<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::renderBody<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::renderFooter<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::process<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::tokenize<\/a>"],[100,2,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::getTokenizedDataArray<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::normalizeBody<\/a>"],[100,2,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::addDynamicHeaderContent<\/a>"],[100,4,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::addDynamicFooterContent<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::renderSourceLink<\/a>"],[100,3,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::canRenderSourceLink<\/a>"],[100,2,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::hasTorchlight<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement::uniqueKey<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement::formatOptionalAttributes<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\MetadataElement::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\MetadataElement::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\MetadataElement::uniqueKey<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement::uniqueKey<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement::normalizeProperty<\/a>"],[100,5,"Hyde\\Framework\\Features\\Metadata\\GlobalMetadataBag::make<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\GlobalMetadataBag::filterDuplicateMetadata<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::toHtml<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::render<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::get<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::add<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::addElement<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::addGenericElement<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::getPrefixedArray<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::generate<\/a>"],[100,4,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::addDynamicPageMetadata<\/a>"],[100,4,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::addMetadataForMarkdownPost<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::addPostMetadataIfExists<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::resolveImageLink<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::create<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::generate<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::canAddRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::removeDuplicateItems<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::sortByPriority<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::getItems<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::generate<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::hasGroups<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::getGroups<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::getItemsInGroup<\/a>"],[100,3,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::isGroupActive<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::canAddRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::isPageIndexPage<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::shouldIndexPageBeActive<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem::fromArray<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem::getItems<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem::searchForDropdownPriorityInNavigationConfig<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::fromRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::forLink<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavItem::forRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getDestination<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getLabel<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getPriority<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getGroup<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::isCurrent<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getRouteGroup<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavItem::normalizeGroupKey<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationData::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationData::make<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationData::toArray<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::generate<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::hasDropdowns<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::getDropdowns<\/a>"],[100,4,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::moveGroupedItemsIntoDropdowns<\/a>"],[100,3,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::canAddRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::canAddItemToDropdown<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::dropdownsEnabled<\/a>"],[100,0,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::generate<\/a>"],[100,0,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::constructBaseElement<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::make<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::getXml<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::getXmlElement<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::escape<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::addChild<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::generate<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::constructBaseElement<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::addItem<\/a>"],[100,6,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::addDynamicItemData<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::addBaseChannelItems<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::addAtomLinkItem<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getImageType<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getImageLength<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getFilename<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getDescription<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getChannel<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::generate<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::getXml<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::constructBaseElement<\/a>"],[100,2,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::addRoute<\/a>"],[100,2,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::getLastModDate<\/a>"],[100,6,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::getPriority<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::getFormattedProcessingTime<\/a>"],[100,1,"Hyde\\Framework\\HydeServiceProvider::register<\/a>"],[100,1,"Hyde\\Framework\\HydeServiceProvider::boot<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::__construct<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::version<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::cdnLink<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::mediaLink<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::hasMediaFile<\/a>"],[100,3,"Hyde\\Framework\\Services\\AssetService::injectTailwindConfig<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::constructCdnPath<\/a>"],[100,2,"Hyde\\Framework\\Services\\AssetService::getCacheBustKey<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::__construct<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::compileStaticPages<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::transferMediaAssets<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::compilePagesForClass<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::getClassPluralName<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::getPageTypes<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::__construct<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::setOutput<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::getRegisteredTasks<\/a>"],[100,3,"Hyde\\Framework\\Services\\BuildTaskService::runPreBuildTasks<\/a>"],[100,3,"Hyde\\Framework\\Services\\BuildTaskService::runPostBuildTasks<\/a>"],[100,2,"Hyde\\Framework\\Services\\BuildTaskService::registerTask<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::registerTaskInService<\/a>"],[100,2,"Hyde\\Framework\\Services\\BuildTaskService::registerIf<\/a>"],[100,2,"Hyde\\Framework\\Services\\BuildTaskService::registerTasks<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::findTasksInConfig<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::findTasksInAppDirectory<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::pathToClassName<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::makeTaskIdentifier<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::registerFrameworkTasks<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canCleanSiteDirectory<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canGenerateManifest<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canGenerateSitemap<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canGenerateFeed<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canGenerateSearch<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::__construct<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::parse<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::setupConverter<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::addExtension<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::runPreProcessing<\/a>"],[100,3,"Hyde\\Framework\\Services\\MarkdownService::runPostProcessing<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::getExtensions<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::removeFeature<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::addFeature<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::withPermalinks<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::isDocumentationPage<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::withTableOfContents<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::canEnableTorchlight<\/a>"],[100,4,"Hyde\\Framework\\Services\\MarkdownService::canEnablePermalinks<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::hasFeature<\/a>"],[100,3,"Hyde\\Framework\\Services\\MarkdownService::determineIfTorchlightAttributionShouldBeInjected<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::injectTorchlightAttribution<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::configurePermalinksExtension<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::enableAllHtmlElements<\/a>"],[100,3,"Hyde\\Framework\\Services\\MarkdownService::normalizeIndentationLevel<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::getNormalizedLines<\/a>"],[100,4,"Hyde\\Framework\\Services\\MarkdownService::findLineContentPositions<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::checks<\/a>"],[100,1,"Hyde\\Framework\\Services\\ValidationService::run<\/a>"],[100,1,"Hyde\\Framework\\Services\\ValidationService::check_validators_can_run<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::check_site_has_a_404_page<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::check_site_has_an_index_page<\/a>"],[100,5,"Hyde\\Framework\\Services\\ValidationService::check_documentation_site_has_an_index_page<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::check_site_has_an_app_css_stylesheet<\/a>"],[100,2,"Hyde\\Framework\\Services\\ValidationService::check_site_has_a_base_url_set<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::check_a_torchlight_api_token_is_set<\/a>"],[100,2,"Hyde\\Framework\\Services\\ValidationService::check_for_conflicts_between_blade_and_markdown_pages<\/a>"],[100,2,"Hyde\\Framework\\Services\\ViewDiffService::getViewFileHashIndex<\/a>"],[100,2,"Hyde\\Framework\\Services\\ViewDiffService::getChecksums<\/a>"],[100,1,"Hyde\\Framework\\Services\\ViewDiffService::checksumMatchesAny<\/a>"],[100,1,"Hyde\\Framework\\Views\\Components\\BreadcrumbsComponent::__construct<\/a>"],[100,1,"Hyde\\Framework\\Views\\Components\\BreadcrumbsComponent::render<\/a>"],[100,5,"Hyde\\Framework\\Views\\Components\\BreadcrumbsComponent::makeBreadcrumbs<\/a>"],[100,1,"Hyde\\Framework\\Views\\Components\\LinkComponent::__construct<\/a>"],[100,1,"Hyde\\Framework\\Views\\Components\\LinkComponent::render<\/a>"],[100,1,"Hyde\\Hyde::version<\/a>"],[100,1,"Hyde\\Hyde::getFacadeRoot<\/a>"],[100,1,"Hyde\\Hyde::kernel<\/a>"],[100,1,"Hyde\\Markdown\\MarkdownConverter::__construct<\/a>"],[100,1,"Hyde\\Markdown\\Models\\FrontMatter::__construct<\/a>"],[100,1,"Hyde\\Markdown\\Models\\FrontMatter::__toString<\/a>"],[100,1,"Hyde\\Markdown\\Models\\FrontMatter::__get<\/a>"],[100,2,"Hyde\\Markdown\\Models\\FrontMatter::get<\/a>"],[100,1,"Hyde\\Markdown\\Models\\FrontMatter::set<\/a>"],[100,1,"Hyde\\Markdown\\Models\\FrontMatter::has<\/a>"],[100,1,"Hyde\\Markdown\\Models\\FrontMatter::toArray<\/a>"],[100,1,"Hyde\\Markdown\\Models\\FrontMatter::fromArray<\/a>"],[100,1,"Hyde\\Markdown\\Models\\Markdown::__construct<\/a>"],[100,1,"Hyde\\Markdown\\Models\\Markdown::__toString<\/a>"],[100,1,"Hyde\\Markdown\\Models\\Markdown::body<\/a>"],[100,1,"Hyde\\Markdown\\Models\\Markdown::compile<\/a>"],[100,1,"Hyde\\Markdown\\Models\\Markdown::toHtml<\/a>"],[100,1,"Hyde\\Markdown\\Models\\Markdown::toArray<\/a>"],[100,1,"Hyde\\Markdown\\Models\\Markdown::fromFile<\/a>"],[100,2,"Hyde\\Markdown\\Models\\Markdown::render<\/a>"],[100,3,"Hyde\\Markdown\\Models\\MarkdownDocument::__construct<\/a>"],[100,1,"Hyde\\Markdown\\Models\\MarkdownDocument::__toString<\/a>"],[100,1,"Hyde\\Markdown\\Models\\MarkdownDocument::markdown<\/a>"],[100,1,"Hyde\\Markdown\\Models\\MarkdownDocument::parse<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\BladeDownProcessor::render<\/a>"],[100,2,"Hyde\\Markdown\\Processing\\BladeDownProcessor::preprocess<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\BladeDownProcessor::postprocess<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\BladeDownProcessor::__construct<\/a>"],[100,2,"Hyde\\Markdown\\Processing\\BladeDownProcessor::run<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\BladeDownProcessor::get<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\BladeDownProcessor::lineStartsWithDirective<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\BladeDownProcessor::processLine<\/a>"],[100,4,"Hyde\\Markdown\\Processing\\CodeblockFilepathProcessor::preprocess<\/a>"],[100,4,"Hyde\\Markdown\\Processing\\CodeblockFilepathProcessor::postprocess<\/a>"],[100,3,"Hyde\\Markdown\\Processing\\CodeblockFilepathProcessor::lineMatchesPattern<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\CodeblockFilepathProcessor::trimHydeDirective<\/a>"],[100,2,"Hyde\\Markdown\\Processing\\CodeblockFilepathProcessor::resolveTemplate<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\CodeblockFilepathProcessor::injectLabelToTorchlightCodeLine<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\CodeblockFilepathProcessor::injectLabelToCodeLine<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ColoredBlockquotes::signature<\/a>"],[100,2,"Hyde\\Markdown\\Processing\\ColoredBlockquotes::resolve<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ColoredBlockquotes::getSignatures<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ColoredBlockquotes::expand<\/a>"],[100,3,"Hyde\\Markdown\\Processing\\ColoredBlockquotes::stringStartsWithSignature<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::preprocess<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::__construct<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::run<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::getShortcodes<\/a>"],[100,2,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::addShortcodesFromArray<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::addShortcode<\/a>"],[100,2,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::discoverShortcodes<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::getOutput<\/a>"],[100,2,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::expandShortcode<\/a>"],[100,2,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::discoverSignature<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::processInput<\/a>"],[100,1,"Hyde\\Pages\\BladePage::__construct<\/a>"],[100,1,"Hyde\\Pages\\BladePage::getBladeView<\/a>"],[100,1,"Hyde\\Pages\\BladePage::compile<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\BaseMarkdownPage::make<\/a>"],[100,2,"Hyde\\Pages\\Concerns\\BaseMarkdownPage::__construct<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\BaseMarkdownPage::markdown<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\BaseMarkdownPage::compile<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\BaseMarkdownPage::save<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::make<\/a>"],[100,2,"Hyde\\Pages\\Concerns\\HydePage::__construct<\/a>"],[100,2,"Hyde\\Pages\\Concerns\\HydePage::isDiscoverable<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::get<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::parse<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::files<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::all<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::sourceDirectory<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::outputDirectory<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::fileExtension<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::setSourceDirectory<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::setOutputDirectory<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::setFileExtension<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::sourcePath<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::outputPath<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::path<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::pathToIdentifier<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::baseRouteKey<\/a>"],[100,0,"Hyde\\Pages\\Concerns\\HydePage::compile<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::toArray<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::getSourcePath<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::getOutputPath<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::getRouteKey<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::getRoute<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::getLink<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::getIdentifier<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::getBladeView<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::title<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::metadata<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::showInNavigation<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::navigationMenuPriority<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::navigationMenuLabel<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::navigationMenuGroup<\/a>"],[100,4,"Hyde\\Pages\\Concerns\\HydePage::getCanonicalUrl<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::constructMetadata<\/a>"],[100,1,"Hyde\\Pages\\DocumentationPage::home<\/a>"],[100,1,"Hyde\\Pages\\DocumentationPage::homeRouteName<\/a>"],[100,2,"Hyde\\Pages\\DocumentationPage::getOnlineSourcePath<\/a>"],[100,1,"Hyde\\Pages\\DocumentationPage::hasTableOfContents<\/a>"],[100,1,"Hyde\\Pages\\DocumentationPage::getTableOfContents<\/a>"],[100,2,"Hyde\\Pages\\DocumentationPage::getRouteKey<\/a>"],[100,2,"Hyde\\Pages\\DocumentationPage::getOutputPath<\/a>"],[100,1,"Hyde\\Pages\\HtmlPage::contents<\/a>"],[100,1,"Hyde\\Pages\\HtmlPage::compile<\/a>"],[100,1,"Hyde\\Pages\\HtmlPage::getBladeView<\/a>"],[100,1,"Hyde\\Pages\\InMemoryPage::make<\/a>"],[100,1,"Hyde\\Pages\\InMemoryPage::__construct<\/a>"],[100,1,"Hyde\\Pages\\InMemoryPage::getContents<\/a>"],[100,1,"Hyde\\Pages\\InMemoryPage::getBladeView<\/a>"],[100,5,"Hyde\\Pages\\InMemoryPage::compile<\/a>"],[100,1,"Hyde\\Pages\\InMemoryPage::macro<\/a>"],[100,1,"Hyde\\Pages\\InMemoryPage::hasMacro<\/a>"],[100,2,"Hyde\\Pages\\InMemoryPage::__call<\/a>"],[100,2,"Hyde\\Pages\\InMemoryPage::callMacro<\/a>"],[100,1,"Hyde\\Pages\\MarkdownPost::getLatestPosts<\/a>"],[100,1,"Hyde\\Pages\\MarkdownPost::toArray<\/a>"],[100,2,"Hyde\\Support\\BuildWarnings::getInstance<\/a>"],[100,2,"Hyde\\Support\\BuildWarnings::report<\/a>"],[100,1,"Hyde\\Support\\BuildWarnings::getWarnings<\/a>"],[100,1,"Hyde\\Support\\BuildWarnings::hasWarnings<\/a>"],[100,1,"Hyde\\Support\\BuildWarnings::reportsWarnings<\/a>"],[100,1,"Hyde\\Support\\BuildWarnings::reportsWarningsAsExceptions<\/a>"],[100,2,"Hyde\\Support\\BuildWarnings::writeWarningsToOutput<\/a>"],[100,3,"Hyde\\Support\\BuildWarnings::renderWarnings<\/a>"],[100,2,"Hyde\\Support\\BuildWarnings::renderWarningsAsExceptions<\/a>"],[100,1,"Hyde\\Support\\DataCollections::markdown<\/a>"],[100,1,"Hyde\\Support\\DataCollections::yaml<\/a>"],[100,1,"Hyde\\Support\\DataCollections::json<\/a>"],[100,1,"Hyde\\Support\\DataCollections::findFiles<\/a>"],[100,1,"Hyde\\Support\\DataCollections::makeIdentifier<\/a>"],[100,1,"Hyde\\Support\\Facades\\Render::getFacadeAccessor<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\MediaFile::all<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\MediaFile::files<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\MediaFile::getIdentifier<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\MediaFile::toArray<\/a>"],[100,2,"Hyde\\Support\\Filesystem\\MediaFile::getContentLength<\/a>"],[100,4,"Hyde\\Support\\Filesystem\\MediaFile::getMimeType<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\MediaFile::discoverMediaAssetFiles<\/a>"],[100,2,"Hyde\\Support\\Filesystem\\MediaFile::getMediaAssetFiles<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\MediaFile::getMediaGlobPattern<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\ProjectFile::make<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\ProjectFile::__construct<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\ProjectFile::toArray<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\ProjectFile::getName<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\ProjectFile::getPath<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\ProjectFile::getAbsolutePath<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\ProjectFile::getContents<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\ProjectFile::getExtension<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\SourceFile::make<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\SourceFile::__construct<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\SourceFile::toArray<\/a>"],[100,2,"Hyde\\Support\\Includes::path<\/a>"],[100,2,"Hyde\\Support\\Includes::get<\/a>"],[100,3,"Hyde\\Support\\Includes::markdown<\/a>"],[100,3,"Hyde\\Support\\Includes::blade<\/a>"],[100,2,"Hyde\\Support\\Includes::needsDirectory<\/a>"],[100,1,"Hyde\\Support\\Models\\DateString::__construct<\/a>"],[100,1,"Hyde\\Support\\Models\\DateString::__toString<\/a>"],[100,1,"Hyde\\Support\\Models\\Redirect::__construct<\/a>"],[100,1,"Hyde\\Support\\Models\\Redirect::create<\/a>"],[100,1,"Hyde\\Support\\Models\\Redirect::compile<\/a>"],[100,1,"Hyde\\Support\\Models\\Redirect::store<\/a>"],[100,2,"Hyde\\Support\\Models\\Redirect::normalizePath<\/a>"],[100,1,"Hyde\\Support\\Models\\RenderData::setPage<\/a>"],[100,1,"Hyde\\Support\\Models\\RenderData::getPage<\/a>"],[100,1,"Hyde\\Support\\Models\\RenderData::getRoute<\/a>"],[100,1,"Hyde\\Support\\Models\\RenderData::getRouteKey<\/a>"],[100,1,"Hyde\\Support\\Models\\RenderData::shareToView<\/a>"],[100,2,"Hyde\\Support\\Models\\RenderData::share<\/a>"],[100,1,"Hyde\\Support\\Models\\RenderData::clearData<\/a>"],[100,1,"Hyde\\Support\\Models\\RenderData::toArray<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::__construct<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::__toString<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::getLink<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::getPage<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::getPageClass<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::getPageIdentifier<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::getRouteKey<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::getSourcePath<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::getOutputPath<\/a>"],[100,2,"Hyde\\Support\\Models\\Route::is<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::toArray<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteKey::make<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteKey::__construct<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteKey::__toString<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteKey::get<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteKey::fromPage<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteList::__construct<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteList::toArray<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteList::headers<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteList::generate<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteList::routeToListItem<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteListItem::__construct<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteListItem::toArray<\/a>"],[100,2,"Hyde\\Support\\Models\\RouteListItem::stylePageType<\/a>"],[100,2,"Hyde\\Support\\Models\\RouteListItem::styleSourcePath<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteListItem::styleOutputPath<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteListItem::styleRouteKey<\/a>"],[100,2,"Hyde\\Support\\Models\\RouteListItem::isPageDiscoverable<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::__construct<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::pass<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::fail<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::skip<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::withTip<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::tip<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::skipped<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::passed<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::failed<\/a>"],[100,3,"Hyde\\Support\\Models\\ValidationResult::statusCode<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::message<\/a>"],[100,2,"Hyde\\Support\\Models\\ValidationResult::formattedMessage<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::formatResult<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::formatPassed<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::formatFailed<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::formatSkipped<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::formatTimeString<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::formatTip<\/a>"],[100,2,"Hyde\\Support\\Models\\ValidationResult::withMessage<\/a>"],[100,3,"Hyde\\Support\\Paginator::__construct<\/a>"],[100,1,"Hyde\\Support\\Paginator::generate<\/a>"],[100,1,"Hyde\\Support\\Paginator::setCurrentPage<\/a>"],[100,1,"Hyde\\Support\\Paginator::currentPage<\/a>"],[100,1,"Hyde\\Support\\Paginator::getPaginatedItems<\/a>"],[100,1,"Hyde\\Support\\Paginator::getItemsForPage<\/a>"],[100,4,"Hyde\\Support\\Paginator::getPageLinks<\/a>"],[100,1,"Hyde\\Support\\Paginator::perPage<\/a>"],[100,1,"Hyde\\Support\\Paginator::totalPages<\/a>"],[100,1,"Hyde\\Support\\Paginator::hasMultiplePages<\/a>"],[100,1,"Hyde\\Support\\Paginator::lastPage<\/a>"],[100,1,"Hyde\\Support\\Paginator::canNavigateBack<\/a>"],[100,1,"Hyde\\Support\\Paginator::canNavigateForward<\/a>"],[100,2,"Hyde\\Support\\Paginator::previousPageNumber<\/a>"],[100,2,"Hyde\\Support\\Paginator::nextPageNumber<\/a>"],[100,3,"Hyde\\Support\\Paginator::previous<\/a>"],[100,3,"Hyde\\Support\\Paginator::next<\/a>"],[100,1,"Hyde\\Support\\Paginator::firstItemNumberOnPage<\/a>"],[100,3,"Hyde\\Support\\Paginator::validateCurrentPageValue<\/a>"],[100,1,"Hyde\\Support\\Paginator::formatPageName<\/a>"],[100,1,"Hyde\\Support\\Paginator::formatLink<\/a>"],[100,1,"Hyde\\Support\\Paginator::getRoute<\/a>"],[100,1,"Hyde\\Support\\Paginator::firstPage<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::fromString<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::fromFile<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::__construct<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::__toString<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::getWordCount<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::getMinutes<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::getSeconds<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::getMinutesAsFloat<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::getSecondsOver<\/a>"],[100,3,"Hyde\\Support\\ReadingTime::getFormatted<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::formatUsingClosure<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::generate<\/a>"],[100,3,"Hyde\\Console\\Concerns\\AsksToRebuildSite::askToRebuildSite<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\BootsHydeKernel::isBooted<\/a>"],[100,4,"Hyde\\Foundation\\Concerns\\BootsHydeKernel::boot<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\BootsHydeKernel::booting<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\BootsHydeKernel::booted<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem::filesystem<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem::path<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem::vendorPath<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem::mediaPath<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem::sitePath<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem::siteMediaPath<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem::pathToAbsolute<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem::pathToRelative<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsHyperlinks::formatLink<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsHyperlinks::relativeLink<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsHyperlinks::mediaLink<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsHyperlinks::asset<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsHyperlinks::url<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsHyperlinks::hasSiteUrl<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\HandlesFoundationCollections::files<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\HandlesFoundationCollections::pages<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\HandlesFoundationCollections::routes<\/a>"],[100,2,"Hyde\\Foundation\\Concerns\\HandlesFoundationCollections::needsToBeBooted<\/a>"],[100,2,"Hyde\\Foundation\\Concerns\\ImplementsStringHelpers::makeTitle<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ImplementsStringHelpers::normalizeNewlines<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ImplementsStringHelpers::stripNewlines<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ImplementsStringHelpers::trimSlashes<\/a>"],[100,2,"Hyde\\Foundation\\Concerns\\ImplementsStringHelpers::markdown<\/a>"],[100,4,"Hyde\\Foundation\\Concerns\\ManagesExtensions::registerExtension<\/a>"],[100,2,"Hyde\\Foundation\\Concerns\\ManagesExtensions::getExtension<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesExtensions::hasExtension<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesExtensions::getExtensions<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesExtensions::getRegisteredExtensions<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesExtensions::getRegisteredPageClasses<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::getInstance<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::setInstance<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::getBasePath<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::setBasePath<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::getSourceRoot<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::setSourceRoot<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::getOutputDirectory<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::setOutputDirectory<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::getMediaDirectory<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::setMediaDirectory<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::getMediaOutputDirectory<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::normalizeSourcePath<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesViewData::shareViewData<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesViewData::currentRouteKey<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesViewData::currentRoute<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesViewData::currentPage<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\InteractsWithDirectories::needsDirectory<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\InteractsWithDirectories::needsDirectories<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\InteractsWithDirectories::needsParentDirectory<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\InteractsWithFrontMatter::data<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\InteractsWithFrontMatter::matter<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\InteractsWithFrontMatter::has<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem::__callStatic<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem::getParameterNames<\/a>"],[100,3,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem::qualifyArguments<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem::qualifyPathArgument<\/a>"],[100,3,"Hyde\\Framework\\Concerns\\Internal\\MockableFeatures::mock<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\MockableFeatures::resolveMockedInstance<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\MockableFeatures::clearMockedInstances<\/a>"],[100,4,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::enableDynamicExtensions<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::enableConfigDefinedExtensions<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::mergeMarkdownConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::initializeExtension<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::registerPreProcessors<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::registerPostProcessors<\/a>"],[100,3,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::registerPreProcessor<\/a>"],[100,3,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::registerPostProcessor<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\RegistersFileLocations::registerSourceDirectories<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\RegistersFileLocations::registerOutputDirectories<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::discoverBladeViewsIn<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::storeCompiledSiteIn<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::useMediaDirectory<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::getSourceDirectoryConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::getOutputDirectoryConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::getPageConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\TracksExecutionTime::startClock<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\TracksExecutionTime::stopClock<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\TracksExecutionTime::getExecutionTimeInMs<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\TracksExecutionTime::getExecutionTimeString<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\ValidatesExistence::validateExistence<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::toCoreDataObject<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::constructFactoryData<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::assignFactoryData<\/a>"],[100,0,"Hyde\\Support\\Concerns\\Serializable::toArray<\/a>"],[100,1,"Hyde\\Support\\Concerns\\Serializable::arraySerialize<\/a>"],[100,1,"Hyde\\Support\\Concerns\\Serializable::jsonSerialize<\/a>"],[100,1,"Hyde\\Support\\Concerns\\Serializable::toJson<\/a>"]], 'Method Complexity'))
+ .datum(getComplexityData([[100,1,"Hyde\\Console\\Commands\\BuildRssFeedCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\BuildSearchCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\BuildSiteCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\BuildSiteCommand::configureBuildTaskService<\/a>"],[100,3,"Hyde\\Console\\Commands\\BuildSiteCommand::runPreBuildActions<\/a>"],[100,4,"Hyde\\Console\\Commands\\BuildSiteCommand::runPostBuildActions<\/a>"],[100,2,"Hyde\\Console\\Commands\\BuildSiteCommand::printFinishMessage<\/a>"],[100,2,"Hyde\\Console\\Commands\\BuildSiteCommand::runNodeCommand<\/a>"],[100,2,"Hyde\\Console\\Commands\\BuildSiteCommand::hasWarnings<\/a>"],[100,3,"Hyde\\Console\\Commands\\BuildSiteCommand::getExitCode<\/a>"],[100,1,"Hyde\\Console\\Commands\\BuildSitemapCommand::handle<\/a>"],[100,3,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::getPageDirectories<\/a>"],[100,1,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::getValidatedName<\/a>"],[100,2,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::validateName<\/a>"],[100,5,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::validateDirectoryCanBeUsed<\/a>"],[100,3,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::validateSubdirectoryCanBeUsed<\/a>"],[100,1,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::assembleSubdirectoryPath<\/a>"],[100,2,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::directoryContainsFiles<\/a>"],[100,2,"Hyde\\Console\\Commands\\ChangeSourceDirectoryCommand::updateConfigurationFile<\/a>"],[100,2,"Hyde\\Console\\Commands\\DebugCommand::__construct<\/a>"],[100,5,"Hyde\\Console\\Commands\\DebugCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\DebugCommand::printVerbosePathInformation<\/a>"],[100,2,"Hyde\\Console\\Commands\\DebugCommand::printEnabledFeatures<\/a>"],[100,1,"Hyde\\Console\\Commands\\MakePageCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\MakePageCommand::validateOptions<\/a>"],[100,1,"Hyde\\Console\\Commands\\MakePageCommand::getTitle<\/a>"],[100,1,"Hyde\\Console\\Commands\\MakePageCommand::getQualifiedPageType<\/a>"],[100,1,"Hyde\\Console\\Commands\\MakePageCommand::getSelectedType<\/a>"],[100,1,"Hyde\\Console\\Commands\\MakePageCommand::getTypeSelection<\/a>"],[100,3,"Hyde\\Console\\Commands\\MakePageCommand::getTypeOption<\/a>"],[100,2,"Hyde\\Console\\Commands\\MakePostCommand::handle<\/a>"],[100,2,"Hyde\\Console\\Commands\\MakePostCommand::getTitle<\/a>"],[100,1,"Hyde\\Console\\Commands\\MakePostCommand::getSelections<\/a>"],[100,2,"Hyde\\Console\\Commands\\MakePostCommand::displaySelections<\/a>"],[100,3,"Hyde\\Console\\Commands\\MakePostCommand::createPostFile<\/a>"],[100,1,"Hyde\\Console\\Commands\\PackageDiscoverCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishConfigsCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishConfigsCommand::parseTagFromSelection<\/a>"],[100,5,"Hyde\\Console\\Commands\\PublishHomepageCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishHomepageCommand::parseSelection<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishHomepageCommand::promptForHomepage<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishHomepageCommand::formatPublishableChoices<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishHomepageCommand::getTemplateOptions<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishHomepageCommand::parseChoiceIntoKey<\/a>"],[100,3,"Hyde\\Console\\Commands\\PublishHomepageCommand::canExistingFileBeOverwritten<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishHomepageCommand::isTheExistingFileADefaultOne<\/a>"],[100,4,"Hyde\\Console\\Commands\\PublishViewsCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\PublishViewsCommand::publishOption<\/a>"],[100,2,"Hyde\\Console\\Commands\\PublishViewsCommand::promptForCategory<\/a>"],[100,2,"Hyde\\Console\\Commands\\PublishViewsCommand::formatPublishableChoices<\/a>"],[100,2,"Hyde\\Console\\Commands\\PublishViewsCommand::parseChoiceIntoKey<\/a>"],[100,2,"Hyde\\Console\\Commands\\RebuildPageCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\RebuildPageCommand::getNormalizedPathString<\/a>"],[100,3,"Hyde\\Console\\Commands\\RebuildPageCommand::makeBuildTask<\/a>"],[100,1,"Hyde\\Console\\Commands\\RouteListCommand::handle<\/a>"],[100,5,"Hyde\\Console\\Commands\\RouteListCommand::routeListClass<\/a>"],[100,1,"Hyde\\Console\\Commands\\ServeCommand::handle<\/a>"],[100,2,"Hyde\\Console\\Commands\\ServeCommand::getPortSelection<\/a>"],[100,2,"Hyde\\Console\\Commands\\ServeCommand::getHostSelection<\/a>"],[100,1,"Hyde\\Console\\Commands\\ServeCommand::getExecutablePath<\/a>"],[100,1,"Hyde\\Console\\Commands\\ServeCommand::runServerProcess<\/a>"],[100,1,"Hyde\\Console\\Commands\\ValidateCommand::__construct<\/a>"],[100,2,"Hyde\\Console\\Commands\\ValidateCommand::handle<\/a>"],[100,1,"Hyde\\Console\\Commands\\ValidateCommand::runCheck<\/a>"],[100,1,"Hyde\\Console\\Commands\\ValidateCommand::getCheckTime<\/a>"],[100,1,"Hyde\\Console\\Commands\\ValidateCommand::timeTotal<\/a>"],[100,2,"Hyde\\Console\\Commands\\VendorPublishCommand::handle<\/a>"],[100,2,"Hyde\\Console\\Commands\\VendorPublishCommand::promptForProviderOrTag<\/a>"],[100,1,"Hyde\\Console\\Commands\\VendorPublishCommand::status<\/a>"],[100,1,"Hyde\\Console\\Commands\\VendorPublishCommand::normalizePath<\/a>"],[100,2,"Hyde\\Console\\Concerns\\Command::handle<\/a>"],[100,1,"Hyde\\Console\\Concerns\\Command::safeHandle<\/a>"],[100,3,"Hyde\\Console\\Concerns\\Command::handleException<\/a>"],[100,3,"Hyde\\Console\\Concerns\\Command::fileLink<\/a>"],[100,1,"Hyde\\Console\\Concerns\\Command::infoComment<\/a>"],[100,1,"Hyde\\Console\\Concerns\\Command::gray<\/a>"],[100,1,"Hyde\\Console\\Concerns\\Command::inlineGray<\/a>"],[100,1,"Hyde\\Console\\Concerns\\Command::href<\/a>"],[100,1,"Hyde\\Console\\Concerns\\Command::indentedLine<\/a>"],[100,2,"Hyde\\Console\\Concerns\\Command::askForString<\/a>"],[100,1,"Hyde\\Console\\ConsoleServiceProvider::register<\/a>"],[100,3,"Hyde\\Console\\ConsoleServiceProvider::logo<\/a>"],[100,1,"Hyde\\Console\\ConsoleServiceProvider::boot<\/a>"],[100,1,"Hyde\\Facades\\Asset::getFacadeAccessor<\/a>"],[100,1,"Hyde\\Facades\\Author::create<\/a>"],[100,1,"Hyde\\Facades\\Author::get<\/a>"],[100,1,"Hyde\\Facades\\Author::all<\/a>"],[100,1,"Hyde\\Facades\\Config::getArray<\/a>"],[100,1,"Hyde\\Facades\\Config::getString<\/a>"],[100,1,"Hyde\\Facades\\Config::getInt<\/a>"],[100,1,"Hyde\\Facades\\Config::getBool<\/a>"],[100,1,"Hyde\\Facades\\Config::getFloat<\/a>"],[100,2,"Hyde\\Facades\\Config::getNullableString<\/a>"],[100,2,"Hyde\\Facades\\Config::validated<\/a>"],[100,1,"Hyde\\Facades\\Features::enabled<\/a>"],[100,1,"Hyde\\Facades\\Features::hasHtmlPages<\/a>"],[100,1,"Hyde\\Facades\\Features::hasBladePages<\/a>"],[100,1,"Hyde\\Facades\\Features::hasMarkdownPages<\/a>"],[100,1,"Hyde\\Facades\\Features::hasMarkdownPosts<\/a>"],[100,1,"Hyde\\Facades\\Features::hasDocumentationPages<\/a>"],[100,3,"Hyde\\Facades\\Features::hasDocumentationSearch<\/a>"],[100,1,"Hyde\\Facades\\Features::hasDarkmode<\/a>"],[100,3,"Hyde\\Facades\\Features::hasTorchlight<\/a>"],[100,1,"Hyde\\Facades\\Features::htmlPages<\/a>"],[100,1,"Hyde\\Facades\\Features::bladePages<\/a>"],[100,1,"Hyde\\Facades\\Features::markdownPages<\/a>"],[100,1,"Hyde\\Facades\\Features::markdownPosts<\/a>"],[100,1,"Hyde\\Facades\\Features::documentationPages<\/a>"],[100,1,"Hyde\\Facades\\Features::documentationSearch<\/a>"],[100,1,"Hyde\\Facades\\Features::darkmode<\/a>"],[100,1,"Hyde\\Facades\\Features::torchlight<\/a>"],[100,3,"Hyde\\Facades\\Features::sitemap<\/a>"],[100,5,"Hyde\\Facades\\Features::rss<\/a>"],[100,1,"Hyde\\Facades\\Features::toArray<\/a>"],[100,1,"Hyde\\Facades\\Features::getDefaultOptions<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::basePath<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::absolutePath<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::relativePath<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::smartGlob<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::touch<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::unlink<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::unlinkIfExists<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::getContents<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::putContents<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::filesystem<\/a>"],[100,1,"Hyde\\Facades\\Filesystem::kernel<\/a>"],[100,1,"Hyde\\Facades\\Meta::name<\/a>"],[100,1,"Hyde\\Facades\\Meta::property<\/a>"],[100,1,"Hyde\\Facades\\Meta::link<\/a>"],[100,1,"Hyde\\Facades\\Meta::get<\/a>"],[100,1,"Hyde\\Facades\\Meta::render<\/a>"],[100,1,"Hyde\\Facades\\Site::url<\/a>"],[100,1,"Hyde\\Facades\\Site::name<\/a>"],[100,1,"Hyde\\Facades\\Site::language<\/a>"],[100,1,"Hyde\\Facades\\Site::metadata<\/a>"],[100,1,"Hyde\\Foundation\\Application::registerBaseBindings<\/a>"],[100,1,"Hyde\\Foundation\\Application::getCachedPackagesPath<\/a>"],[100,0,"Hyde\\Foundation\\Concerns\\BaseFoundationCollection::runDiscovery<\/a>"],[100,0,"Hyde\\Foundation\\Concerns\\BaseFoundationCollection::runExtensionHandlers<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\BaseFoundationCollection::init<\/a>"],[100,2,"Hyde\\Foundation\\Concerns\\BaseFoundationCollection::boot<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\BaseFoundationCollection::__construct<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\BaseFoundationCollection::setKernel<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\HydeExtension::getPageClasses<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\HydeExtension::discoverFiles<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\HydeExtension::discoverPages<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\HydeExtension::discoverRoutes<\/a>"],[100,1,"Hyde\\Foundation\\ConsoleKernel::bootstrappers<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Files::getFacadeRoot<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Pages::getFacadeRoot<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Routes::getFacadeRoot<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Routes::exists<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Routes::get<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Routes::getOrFail<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Routes::all<\/a>"],[100,1,"Hyde\\Foundation\\Facades\\Routes::current<\/a>"],[100,1,"Hyde\\Foundation\\HydeCoreExtension::getPageClasses<\/a>"],[100,1,"Hyde\\Foundation\\HydeKernel::__construct<\/a>"],[100,1,"Hyde\\Foundation\\HydeKernel::version<\/a>"],[100,1,"Hyde\\Foundation\\HydeKernel::features<\/a>"],[100,1,"Hyde\\Foundation\\HydeKernel::hasFeature<\/a>"],[100,1,"Hyde\\Foundation\\HydeKernel::toArray<\/a>"],[100,1,"Hyde\\Foundation\\Internal\\LoadConfiguration::getConfigurationFiles<\/a>"],[100,1,"Hyde\\Foundation\\Internal\\LoadConfiguration::loadConfigurationFiles<\/a>"],[100,2,"Hyde\\Foundation\\Internal\\LoadConfiguration::mergeConfigurationFiles<\/a>"],[100,1,"Hyde\\Foundation\\Internal\\LoadConfiguration::mergeConfigurationFile<\/a>"],[100,3,"Hyde\\Foundation\\Internal\\LoadConfiguration::providePharSupportIfNeeded<\/a>"],[100,5,"Hyde\\Foundation\\Internal\\LoadConfiguration::loadRuntimeConfiguration<\/a>"],[100,2,"Hyde\\Foundation\\Internal\\LoadYamlConfiguration::bootstrap<\/a>"],[100,2,"Hyde\\Foundation\\Internal\\LoadYamlConfiguration::hasYamlConfigFile<\/a>"],[100,1,"Hyde\\Foundation\\Internal\\LoadYamlConfiguration::getYaml<\/a>"],[100,2,"Hyde\\Foundation\\Internal\\LoadYamlConfiguration::getFile<\/a>"],[100,3,"Hyde\\Foundation\\Internal\\LoadYamlConfiguration::mergeParsedConfiguration<\/a>"],[100,1,"Hyde\\Foundation\\Internal\\LoadYamlConfiguration::mergeConfiguration<\/a>"],[100,1,"Hyde\\Foundation\\Internal\\LoadYamlConfiguration::configurationContainsNamespaces<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\FileCollection::addFile<\/a>"],[100,3,"Hyde\\Foundation\\Kernel\\FileCollection::runDiscovery<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\FileCollection::runExtensionHandlers<\/a>"],[100,3,"Hyde\\Foundation\\Kernel\\FileCollection::discoverFilesFor<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\FileCollection::getFile<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\FileCollection::getFiles<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\Filesystem::__construct<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\Filesystem::getBasePath<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\Filesystem::path<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\Filesystem::pathToAbsolute<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\Filesystem::pathToRelative<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\Filesystem::mediaPath<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\Filesystem::sitePath<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\Filesystem::siteMediaPath<\/a>"],[100,3,"Hyde\\Foundation\\Kernel\\Filesystem::vendorPath<\/a>"],[100,3,"Hyde\\Foundation\\Kernel\\Filesystem::touch<\/a>"],[100,3,"Hyde\\Foundation\\Kernel\\Filesystem::unlink<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\Filesystem::unlinkIfExists<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\Filesystem::smartGlob<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\Hyperlinks::__construct<\/a>"],[100,5,"Hyde\\Foundation\\Kernel\\Hyperlinks::formatLink<\/a>"],[100,5,"Hyde\\Foundation\\Kernel\\Hyperlinks::relativeLink<\/a>"],[100,3,"Hyde\\Foundation\\Kernel\\Hyperlinks::mediaLink<\/a>"],[100,4,"Hyde\\Foundation\\Kernel\\Hyperlinks::asset<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\Hyperlinks::hasSiteUrl<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\Hyperlinks::url<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\PageCollection::addPage<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\PageCollection::runDiscovery<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\PageCollection::runExtensionHandlers<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\PageCollection::parsePage<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\PageCollection::getPage<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\PageCollection::getPages<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\RouteCollection::addRoute<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\RouteCollection::runDiscovery<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\RouteCollection::runExtensionHandlers<\/a>"],[100,1,"Hyde\\Foundation\\Kernel\\RouteCollection::getRoute<\/a>"],[100,2,"Hyde\\Foundation\\Kernel\\RouteCollection::getRoutes<\/a>"],[100,1,"Hyde\\Foundation\\PharSupport::mock<\/a>"],[100,1,"Hyde\\Foundation\\PharSupport::clearMocks<\/a>"],[100,1,"Hyde\\Foundation\\PharSupport::running<\/a>"],[100,1,"Hyde\\Foundation\\PharSupport::hasVendorDirectory<\/a>"],[100,2,"Hyde\\Foundation\\PharSupport::vendorPath<\/a>"],[100,1,"Hyde\\Foundation\\Providers\\ConfigurationServiceProvider::register<\/a>"],[100,1,"Hyde\\Foundation\\Providers\\ConfigurationServiceProvider::boot<\/a>"],[100,1,"Hyde\\Foundation\\Providers\\ViewServiceProvider::register<\/a>"],[100,1,"Hyde\\Foundation\\Providers\\ViewServiceProvider::boot<\/a>"],[100,1,"Hyde\\Framework\\Actions\\AnonymousViewCompiler::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\AnonymousViewCompiler::__construct<\/a>"],[100,2,"Hyde\\Framework\\Actions\\AnonymousViewCompiler::__invoke<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::parseFile<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::parseString<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::get<\/a>"],[100,3,"Hyde\\Framework\\Actions\\BladeMatterParser::parse<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::lineMatchesFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::extractKey<\/a>"],[100,1,"Hyde\\Framework\\Actions\\BladeMatterParser::extractValue<\/a>"],[100,3,"Hyde\\Framework\\Actions\\BladeMatterParser::getValueWithType<\/a>"],[100,5,"Hyde\\Framework\\Actions\\BladeMatterParser::parseArrayString<\/a>"],[100,2,"Hyde\\Framework\\Actions\\BladeMatterParser::isValueArrayString<\/a>"],[100,2,"Hyde\\Framework\\Actions\\ConvertsArrayToFrontMatter::execute<\/a>"],[100,1,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::execute<\/a>"],[100,2,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::applyRegexTransformations<\/a>"],[100,2,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::applyStringTransformations<\/a>"],[100,5,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::removeTables<\/a>"],[100,3,"Hyde\\Framework\\Actions\\ConvertsMarkdownToPlainText::removeBlockquotes<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile::__construct<\/a>"],[100,3,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile::save<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile::toArray<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewMarkdownPostFile::getIdentifier<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::save<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::parseTitle<\/a>"],[100,2,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::fileName<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::normalizeSubdirectory<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::makeOutputPath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::createBladeFile<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::createMarkdownFile<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::createDocumentationFile<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::formatIdentifier<\/a>"],[100,2,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::validateType<\/a>"],[100,3,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::failIfFileCannotBeSaved<\/a>"],[100,2,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::getBladePageContent<\/a>"],[100,1,"Hyde\\Framework\\Actions\\CreatesNewPageSourceFile::getMarkdownPageContent<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::__construct<\/a>"],[100,2,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::run<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::generatePageEntry<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::save<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::getSearchContentForDocument<\/a>"],[100,3,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::formatDestination<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesDocumentationSearchIndex::getPath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesTableOfContents::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\GeneratesTableOfContents::execute<\/a>"],[100,2,"Hyde\\Framework\\Actions\\GeneratesTableOfContents::extractTableOfContents<\/a>"],[100,1,"Hyde\\Framework\\Actions\\MarkdownFileParser::parse<\/a>"],[100,4,"Hyde\\Framework\\Actions\\MarkdownFileParser::__construct<\/a>"],[100,1,"Hyde\\Framework\\Actions\\MarkdownFileParser::get<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::handle<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::hashOutputPath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::hashSourcePath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::getManifestPath<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::jsonEncodeOutput<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateBuildManifest::setOutput<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateRssFeed::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateRssFeed::printFinishMessage<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSearch::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSearch::printFinishMessage<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSitemap::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PostBuildTasks\\GenerateSitemap::printFinishMessage<\/a>"],[100,2,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::handle<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::printFinishMessage<\/a>"],[100,3,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::isItSafeToCleanOutputDirectory<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::isOutputDirectoryWhitelisted<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::askIfUnsafeDirectoryShouldBeEmptied<\/a>"],[100,1,"Hyde\\Framework\\Actions\\PreBuildTasks\\CleanSiteDirectory::safeOutputDirectories<\/a>"],[100,1,"Hyde\\Framework\\Actions\\SourceFileParser::__construct<\/a>"],[100,3,"Hyde\\Framework\\Actions\\SourceFileParser::constructPage<\/a>"],[100,1,"Hyde\\Framework\\Actions\\SourceFileParser::parseBladePage<\/a>"],[100,1,"Hyde\\Framework\\Actions\\SourceFileParser::parseMarkdownPage<\/a>"],[100,1,"Hyde\\Framework\\Actions\\SourceFileParser::get<\/a>"],[100,1,"Hyde\\Framework\\Actions\\StaticPageBuilder::handle<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\FileConflictException::__construct<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\FileNotFoundException::__construct<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\RouteNotFoundException::__construct<\/a>"],[100,2,"Hyde\\Framework\\Exceptions\\UnsupportedPageTypeException::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeDescription<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeCategory<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeDate<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeAuthor<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::makeImage<\/a>"],[100,2,"Hyde\\Framework\\Factories\\BlogPostDataFactory::getTruncatedMarkdown<\/a>"],[100,1,"Hyde\\Framework\\Factories\\BlogPostDataFactory::getMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\CoreDataObject::toArray<\/a>"],[100,0,"Hyde\\Framework\\Factories\\Concerns\\PageDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\FeaturedImageFactory::make<\/a>"],[100,3,"Hyde\\Framework\\Factories\\FeaturedImageFactory::makeSource<\/a>"],[100,2,"Hyde\\Framework\\Factories\\FeaturedImageFactory::normalizeLocalImagePath<\/a>"],[100,2,"Hyde\\Framework\\Factories\\FeaturedImageFactory::getStringMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::makeTitle<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::makeNavigation<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleForPage<\/a>"],[100,4,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleFromMarkdownHeadings<\/a>"],[100,3,"Hyde\\Framework\\Factories\\HydePageDataFactory::findTitleFromParentIdentifier<\/a>"],[100,1,"Hyde\\Framework\\Factories\\HydePageDataFactory::getMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::__construct<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::toArray<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeLabel<\/a>"],[100,3,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeGroup<\/a>"],[100,4,"Hyde\\Framework\\Factories\\NavigationDataFactory::makeHidden<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::makePriority<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForLabelInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForGroupInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForHiddenInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::isPageHiddenInNavigationConfiguration<\/a>"],[100,4,"Hyde\\Framework\\Factories\\NavigationDataFactory::isNonDocumentationPageInHiddenSubdirectory<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInFrontMatter<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForLabelInConfig<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInConfigs<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInSidebarConfig<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::searchForPriorityInNavigationConfig<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::parseNavigationPriorityConfig<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::canUseSubdirectoryForGroups<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::defaultGroup<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::pageIsInSubdirectory<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getSubdirectoryName<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getSubdirectoryConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::isInstanceOf<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::invert<\/a>"],[100,2,"Hyde\\Framework\\Factories\\NavigationDataFactory::offset<\/a>"],[100,1,"Hyde\\Framework\\Factories\\NavigationDataFactory::getMatter<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::__toString<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getSource<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::setSource<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getContentLength<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getType<\/a>"],[100,3,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getMetadataArray<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getAltText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getTitleText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getAuthorName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getAuthorUrl<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getCopyrightText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getLicenseName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getLicenseUrl<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasAltText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasTitleText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasAuthorName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasAuthorUrl<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasCopyrightText<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasLicenseName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::hasLicenseUrl<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::has<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getContentLengthForLocalImage<\/a>"],[100,3,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::getContentLengthForRemoteImage<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\FeaturedImage::isRemote<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::__construct<\/a>"],[100,2,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::getOrCreate<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::get<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::all<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::getName<\/a>"],[100,1,"Hyde\\Framework\\Features\\Blogging\\Models\\PostAuthor::findUsername<\/a>"],[100,0,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::handle<\/a>"],[100,4,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::run<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::printStartMessage<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::printFinishMessage<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::getMessage<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::write<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::writeln<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::createdSiteFile<\/a>"],[100,1,"Hyde\\Framework\\Features\\BuildTasks\\BuildTask::withExecutionTime<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::generate<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::compile<\/a>"],[100,2,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::enabled<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\DocumentationSearchPage::routeKey<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::make<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::renderHeader<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::renderBody<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::renderFooter<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::process<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::tokenize<\/a>"],[100,2,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::getTokenizedDataArray<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::normalizeBody<\/a>"],[100,2,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::addDynamicHeaderContent<\/a>"],[100,4,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::addDynamicFooterContent<\/a>"],[100,1,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::renderSourceLink<\/a>"],[100,3,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::canRenderSourceLink<\/a>"],[100,2,"Hyde\\Framework\\Features\\Documentation\\SemanticDocumentationArticle::hasTorchlight<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement::uniqueKey<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\Elements\\LinkElement::formatOptionalAttributes<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\MetadataElement::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\MetadataElement::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\MetadataElement::uniqueKey<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement::uniqueKey<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\Elements\\OpenGraphElement::normalizeProperty<\/a>"],[100,5,"Hyde\\Framework\\Features\\Metadata\\GlobalMetadataBag::make<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\GlobalMetadataBag::filterDuplicateMetadata<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::toHtml<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::render<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::get<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::add<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::addElement<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::addGenericElement<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\MetadataBag::getPrefixedArray<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::generate<\/a>"],[100,4,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::addDynamicPageMetadata<\/a>"],[100,4,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::addMetadataForMarkdownPost<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::addPostMetadataIfExists<\/a>"],[100,2,"Hyde\\Framework\\Features\\Metadata\\PageMetadataBag::resolveImageLink<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::create<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::generate<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::canAddRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::removeDuplicateItems<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::sortByPriority<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\BaseNavigationMenu::getItems<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::generate<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::hasGroups<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::getGroups<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::getItemsInGroup<\/a>"],[100,3,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::isGroupActive<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::canAddRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::isPageIndexPage<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\DocumentationSidebar::shouldIndexPageBeActive<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem::fromArray<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem::getItems<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\DropdownNavItem::searchForDropdownPriorityInNavigationConfig<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::fromRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::forLink<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavItem::forRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::__toString<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getDestination<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getLabel<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getPriority<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getGroup<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::isCurrent<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavItem::getRouteGroup<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavItem::normalizeGroupKey<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationData::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationData::make<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationData::toArray<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::generate<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::hasDropdowns<\/a>"],[100,2,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::getDropdowns<\/a>"],[100,4,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::moveGroupedItemsIntoDropdowns<\/a>"],[100,3,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::canAddRoute<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::canAddItemToDropdown<\/a>"],[100,1,"Hyde\\Framework\\Features\\Navigation\\NavigationMenu::dropdownsEnabled<\/a>"],[100,0,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::generate<\/a>"],[100,0,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::constructBaseElement<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::make<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::__construct<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::getXml<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::getXmlElement<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::escape<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\BaseXmlGenerator::addChild<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::generate<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::constructBaseElement<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::addItem<\/a>"],[100,6,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::addDynamicItemData<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::addBaseChannelItems<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::addAtomLinkItem<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getImageType<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getImageLength<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getFilename<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getDescription<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\RssFeedGenerator::getChannel<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::generate<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::getXml<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::constructBaseElement<\/a>"],[100,2,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::addRoute<\/a>"],[100,2,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::getLastModDate<\/a>"],[100,6,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::getPriority<\/a>"],[100,1,"Hyde\\Framework\\Features\\XmlGenerators\\SitemapGenerator::getFormattedProcessingTime<\/a>"],[100,1,"Hyde\\Framework\\HydeServiceProvider::register<\/a>"],[100,1,"Hyde\\Framework\\HydeServiceProvider::boot<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::__construct<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::version<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::cdnLink<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::mediaLink<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::hasMediaFile<\/a>"],[100,3,"Hyde\\Framework\\Services\\AssetService::injectTailwindConfig<\/a>"],[100,1,"Hyde\\Framework\\Services\\AssetService::constructCdnPath<\/a>"],[100,2,"Hyde\\Framework\\Services\\AssetService::getCacheBustKey<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::__construct<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::compileStaticPages<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::transferMediaAssets<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::compilePagesForClass<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::getClassPluralName<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildService::getPageTypes<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::__construct<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::setOutput<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::getRegisteredTasks<\/a>"],[100,3,"Hyde\\Framework\\Services\\BuildTaskService::runPreBuildTasks<\/a>"],[100,3,"Hyde\\Framework\\Services\\BuildTaskService::runPostBuildTasks<\/a>"],[100,2,"Hyde\\Framework\\Services\\BuildTaskService::registerTask<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::registerTaskInService<\/a>"],[100,2,"Hyde\\Framework\\Services\\BuildTaskService::registerIf<\/a>"],[100,2,"Hyde\\Framework\\Services\\BuildTaskService::registerTasks<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::findTasksInConfig<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::findTasksInAppDirectory<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::pathToClassName<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::makeTaskIdentifier<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::registerFrameworkTasks<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canCleanSiteDirectory<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canGenerateManifest<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canGenerateSitemap<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canGenerateFeed<\/a>"],[100,1,"Hyde\\Framework\\Services\\BuildTaskService::canGenerateSearch<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::__construct<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::parse<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::setupConverter<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::addExtension<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::runPreProcessing<\/a>"],[100,3,"Hyde\\Framework\\Services\\MarkdownService::runPostProcessing<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::getExtensions<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::removeFeature<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::addFeature<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::withPermalinks<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::isDocumentationPage<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::withTableOfContents<\/a>"],[100,2,"Hyde\\Framework\\Services\\MarkdownService::canEnableTorchlight<\/a>"],[100,4,"Hyde\\Framework\\Services\\MarkdownService::canEnablePermalinks<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::hasFeature<\/a>"],[100,3,"Hyde\\Framework\\Services\\MarkdownService::determineIfTorchlightAttributionShouldBeInjected<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::injectTorchlightAttribution<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::configurePermalinksExtension<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::enableAllHtmlElements<\/a>"],[100,3,"Hyde\\Framework\\Services\\MarkdownService::normalizeIndentationLevel<\/a>"],[100,1,"Hyde\\Framework\\Services\\MarkdownService::getNormalizedLines<\/a>"],[100,4,"Hyde\\Framework\\Services\\MarkdownService::findLineContentPositions<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::checks<\/a>"],[100,1,"Hyde\\Framework\\Services\\ValidationService::run<\/a>"],[100,1,"Hyde\\Framework\\Services\\ValidationService::check_validators_can_run<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::check_site_has_a_404_page<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::check_site_has_an_index_page<\/a>"],[100,5,"Hyde\\Framework\\Services\\ValidationService::check_documentation_site_has_an_index_page<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::check_site_has_an_app_css_stylesheet<\/a>"],[100,2,"Hyde\\Framework\\Services\\ValidationService::check_site_has_a_base_url_set<\/a>"],[100,3,"Hyde\\Framework\\Services\\ValidationService::check_a_torchlight_api_token_is_set<\/a>"],[100,2,"Hyde\\Framework\\Services\\ValidationService::check_for_conflicts_between_blade_and_markdown_pages<\/a>"],[100,2,"Hyde\\Framework\\Services\\ViewDiffService::getViewFileHashIndex<\/a>"],[100,2,"Hyde\\Framework\\Services\\ViewDiffService::getChecksums<\/a>"],[100,1,"Hyde\\Framework\\Services\\ViewDiffService::checksumMatchesAny<\/a>"],[100,1,"Hyde\\Framework\\Views\\Components\\BreadcrumbsComponent::__construct<\/a>"],[100,1,"Hyde\\Framework\\Views\\Components\\BreadcrumbsComponent::render<\/a>"],[100,5,"Hyde\\Framework\\Views\\Components\\BreadcrumbsComponent::makeBreadcrumbs<\/a>"],[100,1,"Hyde\\Framework\\Views\\Components\\LinkComponent::__construct<\/a>"],[100,1,"Hyde\\Framework\\Views\\Components\\LinkComponent::render<\/a>"],[100,1,"Hyde\\Hyde::version<\/a>"],[100,1,"Hyde\\Hyde::getFacadeRoot<\/a>"],[100,1,"Hyde\\Hyde::kernel<\/a>"],[100,1,"Hyde\\Markdown\\MarkdownConverter::__construct<\/a>"],[100,1,"Hyde\\Markdown\\Models\\FrontMatter::__construct<\/a>"],[100,1,"Hyde\\Markdown\\Models\\FrontMatter::__toString<\/a>"],[100,1,"Hyde\\Markdown\\Models\\FrontMatter::__get<\/a>"],[100,2,"Hyde\\Markdown\\Models\\FrontMatter::get<\/a>"],[100,1,"Hyde\\Markdown\\Models\\FrontMatter::set<\/a>"],[100,1,"Hyde\\Markdown\\Models\\FrontMatter::has<\/a>"],[100,1,"Hyde\\Markdown\\Models\\FrontMatter::toArray<\/a>"],[100,1,"Hyde\\Markdown\\Models\\FrontMatter::fromArray<\/a>"],[100,1,"Hyde\\Markdown\\Models\\Markdown::__construct<\/a>"],[100,1,"Hyde\\Markdown\\Models\\Markdown::__toString<\/a>"],[100,1,"Hyde\\Markdown\\Models\\Markdown::body<\/a>"],[100,1,"Hyde\\Markdown\\Models\\Markdown::compile<\/a>"],[100,1,"Hyde\\Markdown\\Models\\Markdown::toHtml<\/a>"],[100,1,"Hyde\\Markdown\\Models\\Markdown::toArray<\/a>"],[100,1,"Hyde\\Markdown\\Models\\Markdown::fromFile<\/a>"],[100,2,"Hyde\\Markdown\\Models\\Markdown::render<\/a>"],[100,3,"Hyde\\Markdown\\Models\\MarkdownDocument::__construct<\/a>"],[100,1,"Hyde\\Markdown\\Models\\MarkdownDocument::__toString<\/a>"],[100,1,"Hyde\\Markdown\\Models\\MarkdownDocument::markdown<\/a>"],[100,1,"Hyde\\Markdown\\Models\\MarkdownDocument::parse<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\BladeDownProcessor::render<\/a>"],[100,2,"Hyde\\Markdown\\Processing\\BladeDownProcessor::preprocess<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\BladeDownProcessor::postprocess<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\BladeDownProcessor::__construct<\/a>"],[100,2,"Hyde\\Markdown\\Processing\\BladeDownProcessor::run<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\BladeDownProcessor::get<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\BladeDownProcessor::lineStartsWithDirective<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\BladeDownProcessor::processLine<\/a>"],[100,4,"Hyde\\Markdown\\Processing\\CodeblockFilepathProcessor::preprocess<\/a>"],[100,4,"Hyde\\Markdown\\Processing\\CodeblockFilepathProcessor::postprocess<\/a>"],[100,3,"Hyde\\Markdown\\Processing\\CodeblockFilepathProcessor::lineMatchesPattern<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\CodeblockFilepathProcessor::trimHydeDirective<\/a>"],[100,2,"Hyde\\Markdown\\Processing\\CodeblockFilepathProcessor::resolveTemplate<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\CodeblockFilepathProcessor::injectLabelToTorchlightCodeLine<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\CodeblockFilepathProcessor::injectLabelToCodeLine<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ColoredBlockquotes::signature<\/a>"],[100,2,"Hyde\\Markdown\\Processing\\ColoredBlockquotes::resolve<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ColoredBlockquotes::getSignatures<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ColoredBlockquotes::expand<\/a>"],[100,3,"Hyde\\Markdown\\Processing\\ColoredBlockquotes::stringStartsWithSignature<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::preprocess<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::__construct<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::run<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::getShortcodes<\/a>"],[100,2,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::addShortcodesFromArray<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::addShortcode<\/a>"],[100,2,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::discoverShortcodes<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::getOutput<\/a>"],[100,2,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::expandShortcode<\/a>"],[100,2,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::discoverSignature<\/a>"],[100,1,"Hyde\\Markdown\\Processing\\ShortcodeProcessor::processInput<\/a>"],[100,1,"Hyde\\Pages\\BladePage::__construct<\/a>"],[100,1,"Hyde\\Pages\\BladePage::getBladeView<\/a>"],[100,1,"Hyde\\Pages\\BladePage::compile<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\BaseMarkdownPage::make<\/a>"],[100,2,"Hyde\\Pages\\Concerns\\BaseMarkdownPage::__construct<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\BaseMarkdownPage::markdown<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\BaseMarkdownPage::compile<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\BaseMarkdownPage::save<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::make<\/a>"],[100,2,"Hyde\\Pages\\Concerns\\HydePage::__construct<\/a>"],[100,2,"Hyde\\Pages\\Concerns\\HydePage::isDiscoverable<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::get<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::parse<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::files<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::all<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::sourceDirectory<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::outputDirectory<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::fileExtension<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::setSourceDirectory<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::setOutputDirectory<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::setFileExtension<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::sourcePath<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::outputPath<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::path<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::pathToIdentifier<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::baseRouteKey<\/a>"],[100,0,"Hyde\\Pages\\Concerns\\HydePage::compile<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::toArray<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::getSourcePath<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::getOutputPath<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::getRouteKey<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::getRoute<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::getLink<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::getIdentifier<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::getBladeView<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::title<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::metadata<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::showInNavigation<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::navigationMenuPriority<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::navigationMenuLabel<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::navigationMenuGroup<\/a>"],[100,4,"Hyde\\Pages\\Concerns\\HydePage::getCanonicalUrl<\/a>"],[100,1,"Hyde\\Pages\\Concerns\\HydePage::constructMetadata<\/a>"],[100,1,"Hyde\\Pages\\DocumentationPage::home<\/a>"],[100,1,"Hyde\\Pages\\DocumentationPage::homeRouteName<\/a>"],[100,2,"Hyde\\Pages\\DocumentationPage::getOnlineSourcePath<\/a>"],[100,1,"Hyde\\Pages\\DocumentationPage::hasTableOfContents<\/a>"],[100,1,"Hyde\\Pages\\DocumentationPage::getTableOfContents<\/a>"],[100,2,"Hyde\\Pages\\DocumentationPage::getRouteKey<\/a>"],[100,2,"Hyde\\Pages\\DocumentationPage::getOutputPath<\/a>"],[100,1,"Hyde\\Pages\\HtmlPage::contents<\/a>"],[100,1,"Hyde\\Pages\\HtmlPage::compile<\/a>"],[100,1,"Hyde\\Pages\\HtmlPage::getBladeView<\/a>"],[100,1,"Hyde\\Pages\\InMemoryPage::make<\/a>"],[100,1,"Hyde\\Pages\\InMemoryPage::__construct<\/a>"],[100,1,"Hyde\\Pages\\InMemoryPage::getContents<\/a>"],[100,1,"Hyde\\Pages\\InMemoryPage::getBladeView<\/a>"],[100,5,"Hyde\\Pages\\InMemoryPage::compile<\/a>"],[100,1,"Hyde\\Pages\\InMemoryPage::macro<\/a>"],[100,1,"Hyde\\Pages\\InMemoryPage::hasMacro<\/a>"],[100,2,"Hyde\\Pages\\InMemoryPage::__call<\/a>"],[100,2,"Hyde\\Pages\\InMemoryPage::callMacro<\/a>"],[100,1,"Hyde\\Pages\\MarkdownPost::getLatestPosts<\/a>"],[100,1,"Hyde\\Pages\\MarkdownPost::toArray<\/a>"],[100,2,"Hyde\\Support\\BuildWarnings::getInstance<\/a>"],[100,2,"Hyde\\Support\\BuildWarnings::report<\/a>"],[100,1,"Hyde\\Support\\BuildWarnings::getWarnings<\/a>"],[100,1,"Hyde\\Support\\BuildWarnings::hasWarnings<\/a>"],[100,1,"Hyde\\Support\\BuildWarnings::reportsWarnings<\/a>"],[100,1,"Hyde\\Support\\BuildWarnings::reportsWarningsAsExceptions<\/a>"],[100,2,"Hyde\\Support\\BuildWarnings::writeWarningsToOutput<\/a>"],[100,3,"Hyde\\Support\\BuildWarnings::renderWarnings<\/a>"],[100,2,"Hyde\\Support\\BuildWarnings::renderWarningsAsExceptions<\/a>"],[100,1,"Hyde\\Support\\DataCollections::markdown<\/a>"],[100,1,"Hyde\\Support\\DataCollections::yaml<\/a>"],[100,1,"Hyde\\Support\\DataCollections::json<\/a>"],[100,1,"Hyde\\Support\\DataCollections::findFiles<\/a>"],[100,1,"Hyde\\Support\\DataCollections::makeIdentifier<\/a>"],[100,1,"Hyde\\Support\\Facades\\Render::getFacadeAccessor<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\MediaFile::all<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\MediaFile::files<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\MediaFile::getIdentifier<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\MediaFile::toArray<\/a>"],[100,2,"Hyde\\Support\\Filesystem\\MediaFile::getContentLength<\/a>"],[100,4,"Hyde\\Support\\Filesystem\\MediaFile::getMimeType<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\MediaFile::discoverMediaAssetFiles<\/a>"],[100,2,"Hyde\\Support\\Filesystem\\MediaFile::getMediaAssetFiles<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\MediaFile::getMediaGlobPattern<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\ProjectFile::make<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\ProjectFile::__construct<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\ProjectFile::toArray<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\ProjectFile::getName<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\ProjectFile::getPath<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\ProjectFile::getAbsolutePath<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\ProjectFile::getContents<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\ProjectFile::getExtension<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\SourceFile::make<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\SourceFile::__construct<\/a>"],[100,1,"Hyde\\Support\\Filesystem\\SourceFile::toArray<\/a>"],[100,2,"Hyde\\Support\\Includes::path<\/a>"],[100,2,"Hyde\\Support\\Includes::get<\/a>"],[100,3,"Hyde\\Support\\Includes::markdown<\/a>"],[100,3,"Hyde\\Support\\Includes::blade<\/a>"],[100,2,"Hyde\\Support\\Includes::needsDirectory<\/a>"],[100,1,"Hyde\\Support\\Models\\DateString::__construct<\/a>"],[100,1,"Hyde\\Support\\Models\\DateString::__toString<\/a>"],[100,1,"Hyde\\Support\\Models\\Redirect::__construct<\/a>"],[100,1,"Hyde\\Support\\Models\\Redirect::create<\/a>"],[100,1,"Hyde\\Support\\Models\\Redirect::compile<\/a>"],[100,1,"Hyde\\Support\\Models\\Redirect::store<\/a>"],[100,2,"Hyde\\Support\\Models\\Redirect::normalizePath<\/a>"],[100,1,"Hyde\\Support\\Models\\RenderData::setPage<\/a>"],[100,1,"Hyde\\Support\\Models\\RenderData::getPage<\/a>"],[100,1,"Hyde\\Support\\Models\\RenderData::getRoute<\/a>"],[100,1,"Hyde\\Support\\Models\\RenderData::getRouteKey<\/a>"],[100,1,"Hyde\\Support\\Models\\RenderData::shareToView<\/a>"],[100,2,"Hyde\\Support\\Models\\RenderData::share<\/a>"],[100,1,"Hyde\\Support\\Models\\RenderData::clearData<\/a>"],[100,1,"Hyde\\Support\\Models\\RenderData::toArray<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::__construct<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::__toString<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::getLink<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::getPage<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::getPageClass<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::getPageIdentifier<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::getRouteKey<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::getSourcePath<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::getOutputPath<\/a>"],[100,2,"Hyde\\Support\\Models\\Route::is<\/a>"],[100,1,"Hyde\\Support\\Models\\Route::toArray<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteKey::make<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteKey::__construct<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteKey::__toString<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteKey::get<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteKey::fromPage<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteList::__construct<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteList::toArray<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteList::headers<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteList::generate<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteList::routeToListItem<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteListItem::__construct<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteListItem::toArray<\/a>"],[100,2,"Hyde\\Support\\Models\\RouteListItem::stylePageType<\/a>"],[100,2,"Hyde\\Support\\Models\\RouteListItem::styleSourcePath<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteListItem::styleOutputPath<\/a>"],[100,1,"Hyde\\Support\\Models\\RouteListItem::styleRouteKey<\/a>"],[100,2,"Hyde\\Support\\Models\\RouteListItem::isPageDiscoverable<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::__construct<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::pass<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::fail<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::skip<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::withTip<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::tip<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::skipped<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::passed<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::failed<\/a>"],[100,3,"Hyde\\Support\\Models\\ValidationResult::statusCode<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::message<\/a>"],[100,2,"Hyde\\Support\\Models\\ValidationResult::formattedMessage<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::formatResult<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::formatPassed<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::formatFailed<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::formatSkipped<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::formatTimeString<\/a>"],[100,1,"Hyde\\Support\\Models\\ValidationResult::formatTip<\/a>"],[100,2,"Hyde\\Support\\Models\\ValidationResult::withMessage<\/a>"],[100,3,"Hyde\\Support\\Paginator::__construct<\/a>"],[100,1,"Hyde\\Support\\Paginator::generate<\/a>"],[100,1,"Hyde\\Support\\Paginator::setCurrentPage<\/a>"],[100,1,"Hyde\\Support\\Paginator::currentPage<\/a>"],[100,1,"Hyde\\Support\\Paginator::getPaginatedItems<\/a>"],[100,1,"Hyde\\Support\\Paginator::getItemsForPage<\/a>"],[100,4,"Hyde\\Support\\Paginator::getPageLinks<\/a>"],[100,1,"Hyde\\Support\\Paginator::perPage<\/a>"],[100,1,"Hyde\\Support\\Paginator::totalPages<\/a>"],[100,1,"Hyde\\Support\\Paginator::hasMultiplePages<\/a>"],[100,1,"Hyde\\Support\\Paginator::lastPage<\/a>"],[100,1,"Hyde\\Support\\Paginator::canNavigateBack<\/a>"],[100,1,"Hyde\\Support\\Paginator::canNavigateForward<\/a>"],[100,2,"Hyde\\Support\\Paginator::previousPageNumber<\/a>"],[100,2,"Hyde\\Support\\Paginator::nextPageNumber<\/a>"],[100,3,"Hyde\\Support\\Paginator::previous<\/a>"],[100,3,"Hyde\\Support\\Paginator::next<\/a>"],[100,1,"Hyde\\Support\\Paginator::firstItemNumberOnPage<\/a>"],[100,3,"Hyde\\Support\\Paginator::validateCurrentPageValue<\/a>"],[100,1,"Hyde\\Support\\Paginator::formatPageName<\/a>"],[100,1,"Hyde\\Support\\Paginator::formatLink<\/a>"],[100,1,"Hyde\\Support\\Paginator::getRoute<\/a>"],[100,1,"Hyde\\Support\\Paginator::firstPage<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::fromString<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::fromFile<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::__construct<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::__toString<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::getWordCount<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::getMinutes<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::getSeconds<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::getMinutesAsFloat<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::getSecondsOver<\/a>"],[100,3,"Hyde\\Support\\ReadingTime::getFormatted<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::formatUsingClosure<\/a>"],[100,1,"Hyde\\Support\\ReadingTime::generate<\/a>"],[100,3,"Hyde\\Console\\Concerns\\AsksToRebuildSite::askToRebuildSite<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\BootsHydeKernel::isBooted<\/a>"],[100,4,"Hyde\\Foundation\\Concerns\\BootsHydeKernel::boot<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\BootsHydeKernel::booting<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\BootsHydeKernel::booted<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem::filesystem<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem::path<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem::vendorPath<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem::mediaPath<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem::sitePath<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem::siteMediaPath<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem::pathToAbsolute<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsFilesystem::pathToRelative<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsHyperlinks::formatLink<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsHyperlinks::relativeLink<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsHyperlinks::mediaLink<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsHyperlinks::asset<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsHyperlinks::url<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ForwardsHyperlinks::hasSiteUrl<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\HandlesFoundationCollections::files<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\HandlesFoundationCollections::pages<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\HandlesFoundationCollections::routes<\/a>"],[100,2,"Hyde\\Foundation\\Concerns\\HandlesFoundationCollections::needsToBeBooted<\/a>"],[100,2,"Hyde\\Foundation\\Concerns\\ImplementsStringHelpers::makeTitle<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ImplementsStringHelpers::normalizeNewlines<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ImplementsStringHelpers::stripNewlines<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ImplementsStringHelpers::trimSlashes<\/a>"],[100,2,"Hyde\\Foundation\\Concerns\\ImplementsStringHelpers::markdown<\/a>"],[100,4,"Hyde\\Foundation\\Concerns\\ManagesExtensions::registerExtension<\/a>"],[100,2,"Hyde\\Foundation\\Concerns\\ManagesExtensions::getExtension<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesExtensions::hasExtension<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesExtensions::getExtensions<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesExtensions::getRegisteredExtensions<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesExtensions::getRegisteredPageClasses<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::getInstance<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::setInstance<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::getBasePath<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::setBasePath<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::getSourceRoot<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::setSourceRoot<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::getOutputDirectory<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::setOutputDirectory<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::getMediaDirectory<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::setMediaDirectory<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::getMediaOutputDirectory<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesHydeKernel::normalizeSourcePath<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesViewData::shareViewData<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesViewData::currentRouteKey<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesViewData::currentRoute<\/a>"],[100,1,"Hyde\\Foundation\\Concerns\\ManagesViewData::currentPage<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\InteractsWithDirectories::needsDirectory<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\InteractsWithDirectories::needsDirectories<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\InteractsWithDirectories::needsParentDirectory<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\InteractsWithFrontMatter::data<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\InteractsWithFrontMatter::matter<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\InteractsWithFrontMatter::has<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem::__callStatic<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem::getParameterNames<\/a>"],[100,3,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem::qualifyArguments<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\Internal\\ForwardsIlluminateFilesystem::qualifyPathArgument<\/a>"],[100,3,"Hyde\\Framework\\Concerns\\Internal\\MockableFeatures::mock<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\MockableFeatures::resolveMockedInstance<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\MockableFeatures::clearMockedInstances<\/a>"],[100,4,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::enableDynamicExtensions<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::enableConfigDefinedExtensions<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::mergeMarkdownConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::initializeExtension<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::registerPreProcessors<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::registerPostProcessors<\/a>"],[100,3,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::registerPreProcessor<\/a>"],[100,3,"Hyde\\Framework\\Concerns\\Internal\\SetsUpMarkdownConverter::registerPostProcessor<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\RegistersFileLocations::registerSourceDirectories<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\RegistersFileLocations::registerOutputDirectories<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::discoverBladeViewsIn<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::storeCompiledSiteIn<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::useMediaDirectory<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::getSourceDirectoryConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::getOutputDirectoryConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\RegistersFileLocations::getPageConfiguration<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\TracksExecutionTime::startClock<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\TracksExecutionTime::stopClock<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\TracksExecutionTime::getExecutionTimeInMs<\/a>"],[100,1,"Hyde\\Framework\\Concerns\\TracksExecutionTime::getExecutionTimeString<\/a>"],[100,2,"Hyde\\Framework\\Concerns\\ValidatesExistence::validateExistence<\/a>"],[100,1,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::toCoreDataObject<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::constructFactoryData<\/a>"],[100,2,"Hyde\\Framework\\Factories\\Concerns\\HasFactory::assignFactoryData<\/a>"],[100,0,"Hyde\\Support\\Concerns\\Serializable::toArray<\/a>"],[100,1,"Hyde\\Support\\Concerns\\Serializable::arraySerialize<\/a>"],[100,1,"Hyde\\Support\\Concerns\\Serializable::jsonSerialize<\/a>"],[100,1,"Hyde\\Support\\Concerns\\Serializable::toJson<\/a>"]], 'Method Complexity'))
.transition()
.duration(500)
.call(chart);
diff --git a/master/coverage/framework/src/helpers.php.html b/master/coverage/framework/src/helpers.php.html
index 08636a18409..a144f7cbd70 100644
--- a/master/coverage/framework/src/helpers.php.html
+++ b/master/coverage/framework/src/helpers.php.html
@@ -559,7 +559,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/framework/src/index.html b/master/coverage/framework/src/index.html
index fe390a4cb0e..9ea741583bc 100644
--- a/master/coverage/framework/src/index.html
+++ b/master/coverage/framework/src/index.html
@@ -52,7 +52,7 @@
|
100.00% |
- 2623 / 2623 |
+ 2625 / 2625 |
100.00% covered (success)
@@ -164,7 +164,7 @@
|
100.00% |
- 1217 / 1217 |
+ 1219 / 1219 |
diff --git a/master/coverage/index.html b/master/coverage/index.html
index bec22421d79..7f06c2090ef 100644
--- a/master/coverage/index.html
+++ b/master/coverage/index.html
@@ -50,7 +50,7 @@
|
100.00% |
- 3498 / 3498 |
+ 3500 / 3500 |
100.00% covered (success)
@@ -78,7 +78,7 @@
|
100.00% |
- 2623 / 2623 |
+ 2625 / 2625 |
diff --git a/master/coverage/junit.xml b/master/coverage/junit.xml
index 09b6834d9b5..ae3ef8ba213 100644
--- a/master/coverage/junit.xml
+++ b/master/coverage/junit.xml
@@ -1,2903 +1,2904 @@
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/master/coverage/publications/dashboard.html b/master/coverage/publications/dashboard.html
index 0e7aac5eb76..614ac661607 100644
--- a/master/coverage/publications/dashboard.html
+++ b/master/coverage/publications/dashboard.html
@@ -136,7 +136,7 @@ Project Risks
diff --git a/master/coverage/publications/index.html b/master/coverage/publications/index.html
index 3f5208bf35f..de844ad7853 100644
--- a/master/coverage/publications/index.html
+++ b/master/coverage/publications/index.html
@@ -111,7 +111,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Actions/CreateAction.php.html b/master/coverage/publications/src/Actions/CreateAction.php.html
index e40fd886652..96d4983f495 100644
--- a/master/coverage/publications/src/Actions/CreateAction.php.html
+++ b/master/coverage/publications/src/Actions/CreateAction.php.html
@@ -435,7 +435,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Actions/CreatesNewPublicationPage.php.html b/master/coverage/publications/src/Actions/CreatesNewPublicationPage.php.html
index 3e88c4cad0d..17f6311074c 100644
--- a/master/coverage/publications/src/Actions/CreatesNewPublicationPage.php.html
+++ b/master/coverage/publications/src/Actions/CreatesNewPublicationPage.php.html
@@ -366,7 +366,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Actions/CreatesNewPublicationType.php.html b/master/coverage/publications/src/Actions/CreatesNewPublicationType.php.html
index fe384274078..7cabe7cf7ab 100644
--- a/master/coverage/publications/src/Actions/CreatesNewPublicationType.php.html
+++ b/master/coverage/publications/src/Actions/CreatesNewPublicationType.php.html
@@ -321,7 +321,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Actions/GeneratesPublicationTagPages.php.html b/master/coverage/publications/src/Actions/GeneratesPublicationTagPages.php.html
index 16edfa9f10e..5525ac4dab9 100644
--- a/master/coverage/publications/src/Actions/GeneratesPublicationTagPages.php.html
+++ b/master/coverage/publications/src/Actions/GeneratesPublicationTagPages.php.html
@@ -215,7 +215,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Actions/PublicationFieldValidator.php.html b/master/coverage/publications/src/Actions/PublicationFieldValidator.php.html
index 32b7040eb45..495d1d2977e 100644
--- a/master/coverage/publications/src/Actions/PublicationFieldValidator.php.html
+++ b/master/coverage/publications/src/Actions/PublicationFieldValidator.php.html
@@ -298,7 +298,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Actions/PublicationPageCompiler.php.html b/master/coverage/publications/src/Actions/PublicationPageCompiler.php.html
index d15f05d8315..d70a93423b2 100644
--- a/master/coverage/publications/src/Actions/PublicationPageCompiler.php.html
+++ b/master/coverage/publications/src/Actions/PublicationPageCompiler.php.html
@@ -338,7 +338,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Actions/PublicationPageValidator.php.html b/master/coverage/publications/src/Actions/PublicationPageValidator.php.html
index fa5e7fda458..a6d5f070ab0 100644
--- a/master/coverage/publications/src/Actions/PublicationPageValidator.php.html
+++ b/master/coverage/publications/src/Actions/PublicationPageValidator.php.html
@@ -433,7 +433,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Actions/PublicationSchemaValidator.php.html b/master/coverage/publications/src/Actions/PublicationSchemaValidator.php.html
index 094cdfbe62c..5d126422265 100644
--- a/master/coverage/publications/src/Actions/PublicationSchemaValidator.php.html
+++ b/master/coverage/publications/src/Actions/PublicationSchemaValidator.php.html
@@ -479,7 +479,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Actions/SeedsPublicationFiles.php.html b/master/coverage/publications/src/Actions/SeedsPublicationFiles.php.html
index a4f386e7309..9a1d86f6d7e 100644
--- a/master/coverage/publications/src/Actions/SeedsPublicationFiles.php.html
+++ b/master/coverage/publications/src/Actions/SeedsPublicationFiles.php.html
@@ -645,7 +645,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Actions/dashboard.html b/master/coverage/publications/src/Actions/dashboard.html
index a55c7ff2855..9586195b2b0 100644
--- a/master/coverage/publications/src/Actions/dashboard.html
+++ b/master/coverage/publications/src/Actions/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
diff --git a/master/coverage/publications/src/Actions/index.html b/master/coverage/publications/src/Actions/index.html
index 17b5fa213d8..4596ddb1d47 100644
--- a/master/coverage/publications/src/Actions/index.html
+++ b/master/coverage/publications/src/Actions/index.html
@@ -337,7 +337,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Commands/Helpers/InputStreamHandler.php.html b/master/coverage/publications/src/Commands/Helpers/InputStreamHandler.php.html
index accbc426bc5..a4e93acdc93 100644
--- a/master/coverage/publications/src/Commands/Helpers/InputStreamHandler.php.html
+++ b/master/coverage/publications/src/Commands/Helpers/InputStreamHandler.php.html
@@ -371,7 +371,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Commands/Helpers/dashboard.html b/master/coverage/publications/src/Commands/Helpers/dashboard.html
index c11f872997e..a8ee38541a6 100644
--- a/master/coverage/publications/src/Commands/Helpers/dashboard.html
+++ b/master/coverage/publications/src/Commands/Helpers/dashboard.html
@@ -139,7 +139,7 @@ Project Risks
diff --git a/master/coverage/publications/src/Commands/Helpers/index.html b/master/coverage/publications/src/Commands/Helpers/index.html
index f10aa815186..84225633599 100644
--- a/master/coverage/publications/src/Commands/Helpers/index.html
+++ b/master/coverage/publications/src/Commands/Helpers/index.html
@@ -114,7 +114,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Commands/MakePublicationCommand.php.html b/master/coverage/publications/src/Commands/MakePublicationCommand.php.html
index 117ec35c5a1..a9f7864effc 100644
--- a/master/coverage/publications/src/Commands/MakePublicationCommand.php.html
+++ b/master/coverage/publications/src/Commands/MakePublicationCommand.php.html
@@ -608,7 +608,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Commands/MakePublicationTypeCommand.php.html b/master/coverage/publications/src/Commands/MakePublicationTypeCommand.php.html
index 94789d9c116..e52e0736025 100644
--- a/master/coverage/publications/src/Commands/MakePublicationTypeCommand.php.html
+++ b/master/coverage/publications/src/Commands/MakePublicationTypeCommand.php.html
@@ -612,7 +612,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Commands/SeedPublicationCommand.php.html b/master/coverage/publications/src/Commands/SeedPublicationCommand.php.html
index 5cdc05a197e..abd13ece2d7 100644
--- a/master/coverage/publications/src/Commands/SeedPublicationCommand.php.html
+++ b/master/coverage/publications/src/Commands/SeedPublicationCommand.php.html
@@ -314,7 +314,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Commands/ValidatePublicationTypesCommand.php.html b/master/coverage/publications/src/Commands/ValidatePublicationTypesCommand.php.html
index 0f7942b3c3c..dee26005c03 100644
--- a/master/coverage/publications/src/Commands/ValidatePublicationTypesCommand.php.html
+++ b/master/coverage/publications/src/Commands/ValidatePublicationTypesCommand.php.html
@@ -447,7 +447,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Commands/ValidatePublicationsCommand.php.html b/master/coverage/publications/src/Commands/ValidatePublicationsCommand.php.html
index d324828cdf4..e19a56ae060 100644
--- a/master/coverage/publications/src/Commands/ValidatePublicationsCommand.php.html
+++ b/master/coverage/publications/src/Commands/ValidatePublicationsCommand.php.html
@@ -591,7 +591,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Commands/ValidatingCommand.php.html b/master/coverage/publications/src/Commands/ValidatingCommand.php.html
index dc3046c419f..69664b8f3c6 100644
--- a/master/coverage/publications/src/Commands/ValidatingCommand.php.html
+++ b/master/coverage/publications/src/Commands/ValidatingCommand.php.html
@@ -302,7 +302,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Commands/dashboard.html b/master/coverage/publications/src/Commands/dashboard.html
index 5ee9297e1df..ea587f0b521 100644
--- a/master/coverage/publications/src/Commands/dashboard.html
+++ b/master/coverage/publications/src/Commands/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
diff --git a/master/coverage/publications/src/Commands/index.html b/master/coverage/publications/src/Commands/index.html
index 01ca72a200b..3a28e616838 100644
--- a/master/coverage/publications/src/Commands/index.html
+++ b/master/coverage/publications/src/Commands/index.html
@@ -281,7 +281,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Concerns/ParsesPublicationFieldInputs.php.html b/master/coverage/publications/src/Concerns/ParsesPublicationFieldInputs.php.html
index a5e9400bdd6..cd851fafab2 100644
--- a/master/coverage/publications/src/Concerns/ParsesPublicationFieldInputs.php.html
+++ b/master/coverage/publications/src/Concerns/ParsesPublicationFieldInputs.php.html
@@ -459,7 +459,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Concerns/PublicationFieldTypes.php.html b/master/coverage/publications/src/Concerns/PublicationFieldTypes.php.html
index 82a74f1e32e..8055b7cc0f9 100644
--- a/master/coverage/publications/src/Concerns/PublicationFieldTypes.php.html
+++ b/master/coverage/publications/src/Concerns/PublicationFieldTypes.php.html
@@ -430,7 +430,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Concerns/dashboard.html b/master/coverage/publications/src/Concerns/dashboard.html
index 0189a5fbdee..6672989e05c 100644
--- a/master/coverage/publications/src/Concerns/dashboard.html
+++ b/master/coverage/publications/src/Concerns/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
diff --git a/master/coverage/publications/src/Concerns/index.html b/master/coverage/publications/src/Concerns/index.html
index 6a408f7e0fe..635337d9f99 100644
--- a/master/coverage/publications/src/Concerns/index.html
+++ b/master/coverage/publications/src/Concerns/index.html
@@ -141,7 +141,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Models/PublicationFieldDefinition.php.html b/master/coverage/publications/src/Models/PublicationFieldDefinition.php.html
index c287e430af0..2b7abc9770e 100644
--- a/master/coverage/publications/src/Models/PublicationFieldDefinition.php.html
+++ b/master/coverage/publications/src/Models/PublicationFieldDefinition.php.html
@@ -268,7 +268,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Models/PublicationFieldValue.php.html b/master/coverage/publications/src/Models/PublicationFieldValue.php.html
index 502617ad5d2..e589696b25a 100644
--- a/master/coverage/publications/src/Models/PublicationFieldValue.php.html
+++ b/master/coverage/publications/src/Models/PublicationFieldValue.php.html
@@ -265,7 +265,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Models/PublicationType.php.html b/master/coverage/publications/src/Models/PublicationType.php.html
index 9ce68b60ecb..7ecccfcbccd 100644
--- a/master/coverage/publications/src/Models/PublicationType.php.html
+++ b/master/coverage/publications/src/Models/PublicationType.php.html
@@ -881,7 +881,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Models/dashboard.html b/master/coverage/publications/src/Models/dashboard.html
index ebd41d52fa2..ca65c070d76 100644
--- a/master/coverage/publications/src/Models/dashboard.html
+++ b/master/coverage/publications/src/Models/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
diff --git a/master/coverage/publications/src/Models/index.html b/master/coverage/publications/src/Models/index.html
index da9d41239c7..1e24a07f4d5 100644
--- a/master/coverage/publications/src/Models/index.html
+++ b/master/coverage/publications/src/Models/index.html
@@ -169,7 +169,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Pages/PublicationListPage.php.html b/master/coverage/publications/src/Pages/PublicationListPage.php.html
index 3dd9db64a3e..fd949add87f 100644
--- a/master/coverage/publications/src/Pages/PublicationListPage.php.html
+++ b/master/coverage/publications/src/Pages/PublicationListPage.php.html
@@ -224,7 +224,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Pages/PublicationPage.php.html b/master/coverage/publications/src/Pages/PublicationPage.php.html
index eb17f280ed0..6fda8fe0c66 100644
--- a/master/coverage/publications/src/Pages/PublicationPage.php.html
+++ b/master/coverage/publications/src/Pages/PublicationPage.php.html
@@ -357,7 +357,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Pages/dashboard.html b/master/coverage/publications/src/Pages/dashboard.html
index 2414347c4f8..aa337013239 100644
--- a/master/coverage/publications/src/Pages/dashboard.html
+++ b/master/coverage/publications/src/Pages/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
diff --git a/master/coverage/publications/src/Pages/index.html b/master/coverage/publications/src/Pages/index.html
index 6ac2dfeddd7..09d3060ae45 100644
--- a/master/coverage/publications/src/Pages/index.html
+++ b/master/coverage/publications/src/Pages/index.html
@@ -141,7 +141,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Providers/TranslationServiceProvider.php.html b/master/coverage/publications/src/Providers/TranslationServiceProvider.php.html
index 6f118990612..29bbc1d86db 100644
--- a/master/coverage/publications/src/Providers/TranslationServiceProvider.php.html
+++ b/master/coverage/publications/src/Providers/TranslationServiceProvider.php.html
@@ -195,7 +195,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Providers/dashboard.html b/master/coverage/publications/src/Providers/dashboard.html
index cde3eae8988..87868d394be 100644
--- a/master/coverage/publications/src/Providers/dashboard.html
+++ b/master/coverage/publications/src/Providers/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
diff --git a/master/coverage/publications/src/Providers/index.html b/master/coverage/publications/src/Providers/index.html
index a9e02411911..b1cfd35e219 100644
--- a/master/coverage/publications/src/Providers/index.html
+++ b/master/coverage/publications/src/Providers/index.html
@@ -113,7 +113,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Publications.php.html b/master/coverage/publications/src/Publications.php.html
index 44882eddd39..246ec4ece5e 100644
--- a/master/coverage/publications/src/Publications.php.html
+++ b/master/coverage/publications/src/Publications.php.html
@@ -381,7 +381,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/PublicationsExtension.php.html b/master/coverage/publications/src/PublicationsExtension.php.html
index 6fb4056e51f..7bb4c6ca79f 100644
--- a/master/coverage/publications/src/PublicationsExtension.php.html
+++ b/master/coverage/publications/src/PublicationsExtension.php.html
@@ -548,7 +548,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/PublicationsServiceProvider.php.html b/master/coverage/publications/src/PublicationsServiceProvider.php.html
index 728632c1cda..56e64bba30f 100644
--- a/master/coverage/publications/src/PublicationsServiceProvider.php.html
+++ b/master/coverage/publications/src/PublicationsServiceProvider.php.html
@@ -242,7 +242,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Views/Components/RelatedPublicationsComponent.php.html b/master/coverage/publications/src/Views/Components/RelatedPublicationsComponent.php.html
index a03195cc417..fdbbfc70955 100644
--- a/master/coverage/publications/src/Views/Components/RelatedPublicationsComponent.php.html
+++ b/master/coverage/publications/src/Views/Components/RelatedPublicationsComponent.php.html
@@ -393,7 +393,7 @@
Legend
Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Views/Components/dashboard.html b/master/coverage/publications/src/Views/Components/dashboard.html
index 461c640e411..8356e6ddc04 100644
--- a/master/coverage/publications/src/Views/Components/dashboard.html
+++ b/master/coverage/publications/src/Views/Components/dashboard.html
@@ -139,7 +139,7 @@ Project Risks
diff --git a/master/coverage/publications/src/Views/Components/index.html b/master/coverage/publications/src/Views/Components/index.html
index 31d5e5367a9..45f1e53fd11 100644
--- a/master/coverage/publications/src/Views/Components/index.html
+++ b/master/coverage/publications/src/Views/Components/index.html
@@ -114,7 +114,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/Views/dashboard.html b/master/coverage/publications/src/Views/dashboard.html
index a8483a0449a..5f7dc52496b 100644
--- a/master/coverage/publications/src/Views/dashboard.html
+++ b/master/coverage/publications/src/Views/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
diff --git a/master/coverage/publications/src/Views/index.html b/master/coverage/publications/src/Views/index.html
index b1d2ecd024d..b9e9c0ec3da 100644
--- a/master/coverage/publications/src/Views/index.html
+++ b/master/coverage/publications/src/Views/index.html
@@ -113,7 +113,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/coverage/publications/src/dashboard.html b/master/coverage/publications/src/dashboard.html
index 65ff6fc18ba..1f7afe57893 100644
--- a/master/coverage/publications/src/dashboard.html
+++ b/master/coverage/publications/src/dashboard.html
@@ -137,7 +137,7 @@ Project Risks
diff --git a/master/coverage/publications/src/index.html b/master/coverage/publications/src/index.html
index 15b2bc087e6..898f56273ee 100644
--- a/master/coverage/publications/src/index.html
+++ b/master/coverage/publications/src/index.html
@@ -364,7 +364,7 @@ Legend
High: 90% to 100%
- Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 9:47:06 UTC 2023.
+ Generated by php-code-coverage 10.1.7 using PHP 8.1.25 and PHPUnit 10.4.2 at Tue Nov 7 10:15:40 UTC 2023.
diff --git a/master/preview/blade.html b/master/preview/blade.html
index accbe8d9b1f..ba10e01d762 100644
--- a/master/preview/blade.html
+++ b/master/preview/blade.html
@@ -92,7 +92,7 @@ You can even use arbitrary PHP.
- Hello World! This PHP was executed at 2023-11-07 09:45:52
+ Hello World! This PHP was executed at 2023-11-07 10:14:42
@@ -100,8 +100,8 @@ You can even use arbitrary PHP.
|