Test Failed
Push — master ( 16c39a...9c7d46 )
by Kirill
07:07
created

AbstractValueNode::toPrimitive()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
nc 2
nop 0
dl 0
loc 8
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * This file is part of Railt package.
4
 *
5
 * For the full copyright and license information, please view the LICENSE
6
 * file that was distributed with this source code.
7
 */
8
declare(strict_types=1);
9
10
namespace Railt\SDL\Frontend\AST\Scalar;
11
12
use Railt\Parser\Ast\Rule;
13
14
/**
15
 * Class AbstractValue
16
 */
17
abstract class AbstractValueNode extends Rule implements ScalarInterface
18
{
19
    /**
20
     * @var mixed
21
     */
22
    private $value;
23
24
    /**
25
     * @return mixed
26
     */
27
    abstract protected function parse();
28
29
    /**
30
     * @return mixed
31
     */
32
    public function toPrimitive()
33
    {
34
        if ($this->value === null) {
35
            $this->value = $this->parse();
36
        }
37
38
        return $this->value;
39
    }
40
}
41