-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathAttribute.php
74 lines (58 loc) · 1.87 KB
/
Attribute.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <dunglas@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace ApiPlatform\SchemaGenerator\Model;
use Nette\PhpGenerator\Attribute as NetteAttribute;
use Nette\PhpGenerator\PhpNamespace;
final class Attribute
{
use ResolveNameTrait;
private string $name;
/** @var (int|bool|string|string[]|string[][]|\Nette\PhpGenerator\Literal|\Nette\PhpGenerator\Literal[]|null)[] */
private array $args;
/**
* If this attribute can be appended if a same one has not previously been generated or if the same one is not mergeable?
*
* @see AddAttributeTrait
*/
public bool $append = true;
/**
* If this attribute mergeable with the next one?
*
* @see AddAttributeTrait
*/
public bool $mergeable = true;
/**
* @param (int|bool|string|string[]|string[][]|\Nette\PhpGenerator\Literal|\Nette\PhpGenerator\Literal[]|null)[] $args
*/
public function __construct(string $name, array $args = [])
{
$this->name = $name;
$this->append = (bool) ($args['alwaysGenerate'] ?? true);
$this->mergeable = (bool) ($args['mergeable'] ?? true);
unset($args['alwaysGenerate'], $args['mergeable']);
$this->args = $args;
}
public function name(): string
{
return $this->name;
}
/**
* @return (int|bool|string|string[]|string[][]|\Nette\PhpGenerator\Literal|\Nette\PhpGenerator\Literal[]|null)[]
*/
public function args(): array
{
return $this->args;
}
public function toNetteAttribute(PhpNamespace $namespace): NetteAttribute
{
return new NetteAttribute($this->resolveName($namespace, $this->name), $this->args);
}
}