1 | <?php |
||
31 | class ArithmeticFactor extends Node |
||
32 | { |
||
33 | /** |
||
34 | * @var mixed |
||
35 | */ |
||
36 | public $arithmeticPrimary; |
||
37 | |||
38 | /** |
||
39 | * NULL represents no sign, TRUE means positive and FALSE means negative sign. |
||
40 | * |
||
41 | * @var null|boolean |
||
42 | */ |
||
43 | public $sign; |
||
44 | |||
45 | /** |
||
46 | * @param mixed $arithmeticPrimary |
||
47 | * @param null|bool $sign |
||
48 | */ |
||
49 | public function __construct($arithmeticPrimary, $sign = null) |
||
54 | |||
55 | /** |
||
56 | * @return bool |
||
57 | */ |
||
58 | public function isPositiveSigned() |
||
62 | |||
63 | /** |
||
64 | * @return bool |
||
65 | */ |
||
66 | public function isNegativeSigned() |
||
70 | |||
71 | /** |
||
72 | * {@inheritdoc} |
||
73 | */ |
||
74 | public function dispatch($sqlWalker) |
||
78 | } |
||
79 |