ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Constraint.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Refinery;
22 
25 
31 interface Constraint extends Transformation
32 {
42  public function check($value);
43 
50  public function accepts($value): bool;
51 
60  public function problemWith($value): ?string;
61 
72  public function applyTo(Result $result): Result;
73 
87  public function withProblemBuilder(callable $builder): self;
88 }
withProblemBuilder(callable $builder)
Get a constraint like this one with a builder for a custom error message.
A constraint encodes some resrtictions on values.
Definition: Constraint.php:31
A transformation is a function from one datatype to another.