-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathCondition.php
49 lines (38 loc) · 913 Bytes
/
Condition.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
declare(strict_types=1);
namespace PhpMyAdmin\SqlParser\Components;
use PhpMyAdmin\SqlParser\Component;
use function trim;
final class Condition implements Component
{
/**
* Identifiers recognized.
*
* @var array<int, mixed>
*/
public array $identifiers = [];
/**
* Whether this component is an operator.
*/
public bool $isOperator = false;
/**
* The condition.
*/
public string $expr;
public string $leftOperand = '';
public string $operator = '';
public string $rightOperand = '';
/** @param string $expr the condition or the operator */
public function __construct(string|null $expr = null)
{
$this->expr = trim((string) $expr);
}
public function build(): string
{
return $this->expr;
}
public function __toString(): string
{
return $this->build();
}
}