Skip to content
This repository was archived by the owner on Jun 23, 2025. It is now read-only.

Commit 39b7643

Browse files
committed
Replace DocumentationRenderer::renderListOfNamespaces() by DocumentationRenderer::renderGroupedClassesByNamespaces() for more comprehension.
1 parent 37dd92a commit 39b7643

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/DocumentationRenderer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function render(): void
4040
// an arobase (@) is specified during that an HTML file is loading.
4141
@$this->dom->loadHTMLFile(__DIR__ . '/../templates/empty-doc.html');
4242

43-
$this->renderListOfNamespaces();
43+
$this->renderGroupedClassesByNamespaces();
4444
$this->renderDocumentationFromMethods();
4545
$this->renderListOfProperties();
4646
$this->renderListOfMethods();
@@ -67,7 +67,7 @@ public function getPath(): string
6767
* @throws DOMException
6868
* @throws Exception
6969
*/
70-
private function renderListOfNamespaces(): void
70+
private function renderGroupedClassesByNamespaces(): void
7171
{
7272
$asideLeft = $this->dom->getElementById("asideNamespacesAndClasses");
7373

0 commit comments

Comments
 (0)