-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathType.php
More file actions
110 lines (90 loc) · 3.12 KB
/
Type.php
File metadata and controls
110 lines (90 loc) · 3.12 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\TypeInfo;
use Symfony\Component\TypeInfo\Type\CompositeTypeInterface;
use Symfony\Component\TypeInfo\Type\WrappingTypeInterface;
/**
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
* @author Baptiste Leduc <baptiste.leduc@gmail.com>
*/
abstract class Type implements \Stringable
{
use TypeFactoryTrait;
/**
* Tells if the type is satisfied by the $specification callable.
*
* @param-immediately-invoked-callable $specification
*
* @param callable(self): bool $specification
*/
public function isSatisfiedBy(callable $specification): bool
{
if ($this instanceof WrappingTypeInterface && $this->wrappedTypeIsSatisfiedBy($specification)) {
return true;
}
if ($this instanceof CompositeTypeInterface && $this->composedTypesAreSatisfiedBy($specification)) {
return true;
}
return $specification($this);
}
/**
* Tells if the type (or one of its wrapped/composed parts) is identified by one of the $identifiers.
*/
public function isIdentifiedBy(TypeIdentifier|string ...$identifiers): bool
{
$specification = static fn (Type $type): bool => $type->isIdentifiedBy(...$identifiers);
if ($this instanceof WrappingTypeInterface && $this->wrappedTypeIsSatisfiedBy($specification)) {
return true;
}
if ($this instanceof CompositeTypeInterface && $this->composedTypesAreSatisfiedBy($specification)) {
return true;
}
return false;
}
public function isNullable(): bool
{
return false;
}
/**
* Tells if the type (or one of its wrapped/composed parts) accepts the given $value.
*/
public function accepts(mixed $value): bool
{
$specification = static function (Type $type) use (&$specification, $value): bool {
if ($type instanceof WrappingTypeInterface) {
return $type->wrappedTypeIsSatisfiedBy($specification);
}
if ($type instanceof CompositeTypeInterface) {
return $type->composedTypesAreSatisfiedBy($specification);
}
return $type->accepts($value);
};
return $this->isSatisfiedBy($specification);
}
/**
* Traverses the whole type tree.
*
* @return iterable<self>
*/
public function traverse(bool $traverseComposite = true, bool $traverseWrapped = true): iterable
{
yield $this;
if ($this instanceof CompositeTypeInterface && $traverseComposite) {
foreach ($this->getTypes() as $type) {
yield $type;
}
// prevent yielding twice when having a type that is both composite and wrapped
return;
}
if ($this instanceof WrappingTypeInterface && $traverseWrapped) {
yield $this->getWrappedType();
}
}
}