summaryrefslogtreecommitdiff
path: root/src/view/ViewBuilder.php
blob: acac972f8a480e4cbb258e350fca220b1b76efb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
// src/view/ViewBuilder.php
//
// appelle les autres Builder

declare(strict_types=1);

use App\Entity\Node;

class ViewBuilder extends AbstractBuilder
{
    public function __construct(Node $root_node)
    {
        $this->useChildrenBuilder($root_node);
    }
}