1 | <?php |
||
12 | class Decode implements Processor |
||
13 | { |
||
14 | use Processor\Implementation; |
||
15 | |||
16 | /** |
||
17 | * Apply processing to a single node |
||
18 | * |
||
19 | * @param Node $node |
||
20 | */ |
||
21 | 3 | public function applyToNode(Node $node) |
|
41 | |||
42 | |||
43 | /** |
||
44 | * Base64 decode |
||
45 | * |
||
46 | * @param string $input |
||
47 | */ |
||
48 | 1 | public function base64($input) |
|
52 | |||
53 | /** |
||
54 | * Base58 decode |
||
55 | * |
||
56 | * @param string $input |
||
57 | */ |
||
58 | 1 | public function base58($input) |
|
63 | |||
64 | /** |
||
65 | * Url decode |
||
66 | * |
||
67 | * @param string $input |
||
68 | */ |
||
69 | 1 | public function url($input) |
|
73 | } |
||
74 |