ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
InArrayTransformation.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 
36 {
38 
40  private $error;
41 
46  public function __construct(private readonly array $valid_members, private readonly Language $lng)
47  {
48  if (!array_is_list($this->valid_members)) {
49  throw new ConstraintViolationException('The valid members MUST be a list.', 'array_not_a_list');
50  }
51  $this->error = sprintf(
52  'The value MUST be one of: %s.',
53  join(', ', array_map(json_encode(...), $this->valid_members))
54  );
55  }
56 
57  public function accepts($value): bool
58  {
59  return in_array($value, $this->valid_members, true);
60  }
61 
62  public function getError()
63  {
64  return $this->error;
65  }
66 }
A constraint encodes some resrtictions on values.
Definition: Constraint.php:31
Validates that the value to be transformed is in the set given to this transformation.
trait DeriveTransformWithProblem
This trait is a convenience trait which uses DeriveApplyToFromTransform, DeriveInvokeFromTransform an...
accepts($value)
Tells if the provided value complies.
global $lng
Definition: privfeed.php:31
__construct(private readonly array $valid_members, private readonly Language $lng)