| 1 | <?php |
||
| 18 | final class StreamCloseAction extends AbstractAction |
||
| 19 | { |
||
| 20 | /** The output socket. */ |
||
| 21 | const SOCKET_OUTPUT = 'out'; |
||
| 22 | |||
| 23 | /** The stream variable socket. */ |
||
| 24 | const SOCKET_STREAM = 'stream'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Initializes a new instance of this class. |
||
| 28 | */ |
||
| 29 | public function __construct() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Executes the node's logic. |
||
| 39 | */ |
||
| 40 | public function execute() |
||
| 56 | } |
||
| 57 |