1 | <?php |
||
20 | abstract class AbstractModifier implements ModifierInterface |
||
21 | { |
||
22 | abstract public function run(History $history); |
||
23 | |||
24 | /** |
||
25 | * Creates modifier from given config. |
||
26 | * |
||
27 | * @param string|array $config |
||
28 | * @return AbstractModifier |
||
29 | */ |
||
30 | 2 | public static function create($config = []) |
|
51 | } |
||
52 |