| 1 | <?php |
||
| 17 | final class VarDumpAction extends AbstractAction |
||
| 18 | { |
||
| 19 | /** The constant that defines the output socket. */ |
||
| 20 | const SOCKET_OUTPUT = 'out'; |
||
| 21 | |||
| 22 | /** The socket that holds the data variable. */ |
||
| 23 | const SOCKET_DATA = 'data'; |
||
| 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() |
||
| 55 | } |
||
| 56 |