Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
jaapio committed Oct 4, 2023
1 parent 0d3341c commit 05d52cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/phpDocumentor/Transformer/Writer/RenderGuide.php
Expand Up @@ -13,6 +13,7 @@

namespace phpDocumentor\Transformer\Writer;

use ArrayIterator;
use League\Tactician\CommandBus;
use phpDocumentor\Descriptor\DocumentationSetDescriptor;
use phpDocumentor\Descriptor\DocumentDescriptor;
Expand Down Expand Up @@ -103,7 +104,7 @@ private function renderDocumentationSet(
$this->commandBus->handle(new RenderCommand(
$documentationSet->getOutputFormat(),
$documents,
new \ArrayIterator($documents),
new ArrayIterator($documents),
$filesystem,
$destination,
$documentationSet->getGuidesProjectNode(),
Expand Down

0 comments on commit 05d52cf

Please sign in to comment.