-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathFunctionCall.php
49 lines (40 loc) · 1.09 KB
/
FunctionCall.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 is_array;
/**
* Parses a function call.
*/
final class FunctionCall implements Component
{
/**
* The name of this function.
*/
public string|null $name = null;
/**
* The list of parameters.
*/
public ArrayObj|null $parameters = null;
/**
* @param string|null $name the name of the function to be called
* @param string[]|ArrayObj|null $parameters the parameters of this function
*/
public function __construct(string|null $name = null, array|ArrayObj|null $parameters = null)
{
$this->name = $name;
if (is_array($parameters)) {
$this->parameters = new ArrayObj($parameters);
} elseif ($parameters instanceof ArrayObj) {
$this->parameters = $parameters;
}
}
public function build(): string
{
return $this->name . $this->parameters;
}
public function __toString(): string
{
return $this->build();
}
}