1 | <?php |
||
17 | final class ClearAction extends AbstractAction |
||
18 | { |
||
19 | /** The output action socket. */ |
||
20 | const SOCKET_OUTPUT = 'out'; |
||
21 | |||
22 | /** The array variable socket. */ |
||
23 | const SOCKET_ARRAY = 'array'; |
||
24 | |||
25 | /** |
||
26 | * Initializes a new instance of this class. |
||
27 | */ |
||
28 | public function __construct() |
||
35 | |||
36 | /** |
||
37 | * Executes the node's logic. |
||
38 | */ |
||
39 | public function execute() |
||
50 | } |
||
51 |