Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
5 / 5 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
AllApplies | |
100.00% |
5 / 5 |
|
100.00% |
2 / 2 |
4 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
applies | |
100.00% |
4 / 4 |
|
100.00% |
1 / 1 |
3 |
1 | <?php |
2 | namespace Apie\Core\Attributes; |
3 | |
4 | use Apie\Core\Context\ApieContext; |
5 | use Attribute; |
6 | |
7 | /** |
8 | * Add this attribute that succeeds if all checks succeed. Adding no arguments also means it is successful. |
9 | */ |
10 | #[Attribute(Attribute::IS_REPEATABLE|Attribute::TARGET_CLASS|Attribute::TARGET_METHOD|Attribute::TARGET_PROPERTY|Attribute::TARGET_PARAMETER|Attribute::TARGET_CLASS_CONSTANT)] |
11 | final class AllApplies implements ApieContextAttribute |
12 | { |
13 | /** |
14 | * @var ApieContextAttribute[] |
15 | */ |
16 | private array $checks; |
17 | |
18 | public function __construct(ApieContextAttribute... $checks) |
19 | { |
20 | $this->checks = $checks; |
21 | } |
22 | |
23 | public function applies(ApieContext $context): bool |
24 | { |
25 | foreach ($this->checks as $check) { |
26 | if (!$check->applies($context)) { |
27 | return false; |
28 | } |
29 | } |
30 | return true; |
31 | } |
32 | } |