* SPDX-License-Identifier: AGPL-3.0-only ************************************/ class State{ var $success ; var $result ; var $error; function __construct(){ $this->success = false; $this->result = array(); $this->error = array(); } } ?>