ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
Transformation.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 2017 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
3 /* Copyright (c) 2017 Stefan Hecken <stefan.hecken@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4 
5 namespace ILIAS\Refinery;
6 
8 
17 interface Transformation
18 {
27  public function transform($from);
28 
51  public function applyTo(Result $data) : Result;
52 
60  public function __invoke($from);
61 }
$data
Definition: storeScorm.php:23
applyTo(Result $data)
Perform the transformation and reify possible failures.
A result encapsulates a value or an error and simplifies the handling of those.
Definition: Result.php:11
transform($from)
Perform the transformation.
__invoke($from)
Transformations should be callable.
A transformation is a function from one datatype to another.