blob: cd9e8e012a91a9c69960f5421a8dbba95891d493 (
plain)
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
|
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Query\Expr;
use Stringable;
use function implode;
/**
* Expression class for generating DQL functions.
*
* @link www.doctrine-project.org
*/
class Func implements Stringable
{
/** @var mixed[] */
protected array $arguments;
/**
* Creates a function, with the given argument.
*
* @psalm-param list<mixed>|mixed $arguments
*/
public function __construct(
protected string $name,
mixed $arguments,
) {
$this->arguments = (array) $arguments;
}
public function getName(): string
{
return $this->name;
}
/** @psalm-return list<mixed> */
public function getArguments(): array
{
return $this->arguments;
}
public function __toString(): string
{
return $this->name . '(' . implode(', ', $this->arguments) . ')';
}
}
|