ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Transformation.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Refinery;
22 
25 
34 interface Transformation
35 {
44  public function transform($from);
45 
65  public function applyTo(Result $result): Result;
66 
74  public function __invoke($from);
75 }
transform($from)
Perform the transformation.
__invoke($from)
Transformations should be callable.
A transformation is a function from one datatype to another.
applyTo(Result $result)
Perform the transformation and reify possible failures.