Completed
Pull Request — master (#470)
by Claus
01:32
created

ArgumentDefinition::getDefaultValue()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
declare(strict_types=1);
3
namespace TYPO3Fluid\Fluid\Component\Argument;
4
5
/*
6
 * This file belongs to the package "TYPO3 Fluid".
7
 * See LICENSE.txt that was shipped with this package.
8
 */
9
10
/**
11
 * Argument definition of each view helper argument
12
 */
13
class ArgumentDefinition
14
{
15
    /**
16
     * Name of argument
17
     *
18
     * @var string
19
     */
20
    protected $name;
21
22
    /**
23
     * Type of argument
24
     *
25
     * @var string
26
     */
27
    protected $type;
28
29
    /**
30
     * Description of argument
31
     *
32
     * @var string
33
     */
34
    protected $description;
35
36
    /**
37
     * Is argument required?
38
     *
39
     * @var boolean
40
     */
41
    protected $required = false;
42
43
    /**
44
     * Default value for argument
45
     *
46
     * @var mixed
47
     */
48
    protected $defaultValue = null;
49
50
    /**
51
     * Constructor for this argument definition.
52
     *
53
     * @param string $name Name of argument
54
     * @param string $type Type of argument
55
     * @param string $description Description of argument
56
     * @param boolean $required TRUE if argument is required
57
     * @param mixed $defaultValue Default value
58
     */
59
    public function __construct(string $name, string $type, string $description, bool $required, $defaultValue = null)
60
    {
61
        $this->name = $name;
62
        $this->type = $type === 'bool' ? 'boolean' : $type;
63
        $this->description = $description;
64
        $this->required = $required;
65
        $this->defaultValue = $defaultValue;
66
    }
67
68
    /**
69
     * Get the name of the argument
70
     *
71
     * @return string Name of argument
72
     */
73
    public function getName(): string
74
    {
75
        return $this->name;
76
    }
77
78
    /**
79
     * Get the type of the argument
80
     *
81
     * @return string Type of argument
82
     */
83
    public function getType(): string
84
    {
85
        return $this->type;
86
    }
87
88
    /**
89
     * Get the description of the argument
90
     *
91
     * @return string Description of argument
92
     */
93
    public function getDescription(): string
94
    {
95
        return $this->description;
96
    }
97
98
    /**
99
     * Get the optionality of the argument
100
     *
101
     * @return boolean TRUE if argument is optional
102
     */
103
    public function isRequired(): bool
104
    {
105
        return $this->required;
106
    }
107
108
    /**
109
     * Get the default value, if set
110
     *
111
     * @return mixed Default value
112
     */
113
    public function getDefaultValue()
114
    {
115
        return $this->defaultValue;
116
    }
117
}
118