ModelNode::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
cc 1
nc 1
nop 3
crap 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Shoot\Shoot\Twig\Node;
5
6
use Twig\Node\Node;
7
8
/**
9
 * Represents the model tag used to assign a presentation model to a view.
10
 *
11
 * @internal
12
 */
13
final class ModelNode extends Node
14
{
15
    /**
16
     * @param string $presentationModel
17
     * @param int    $lineNumber
18
     * @param string $tag
19
     */
20 7
    public function __construct(string $presentationModel, int $lineNumber, string $tag)
21
    {
22 7
        parent::__construct([], ['presentation_model' => $presentationModel], $lineNumber, $tag);
23 7
    }
24
}
25