Skip to content

Commit

Permalink
Replace DocumentationRenderer::renderListOfNamespaces() by `Documen…
Browse files Browse the repository at this point in the history
…tationRenderer::renderGroupedClassesByNamespaces()` for more comprehension.
  • Loading branch information
tamdaz committed Jul 26, 2024
1 parent 37dd92a commit 39b7643
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DocumentationRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function render(): void
// an arobase (@) is specified during that an HTML file is loading.
@$this->dom->loadHTMLFile(__DIR__ . '/../templates/empty-doc.html');

$this->renderListOfNamespaces();
$this->renderGroupedClassesByNamespaces();
$this->renderDocumentationFromMethods();
$this->renderListOfProperties();
$this->renderListOfMethods();
Expand All @@ -67,7 +67,7 @@ public function getPath(): string
* @throws DOMException
* @throws Exception
*/
private function renderListOfNamespaces(): void
private function renderGroupedClassesByNamespaces(): void
{
$asideLeft = $this->dom->getElementById("asideNamespacesAndClasses");

Expand Down

0 comments on commit 39b7643

Please sign in to comment.