1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- namespace OSInet\Finite_State_Machine;
- require_once('misc.php');
- $erFiniteStateMachine = error_reporting(-1);
- class Result {
-
- public $fsmReturn;
-
- public $fsmState;
-
- public $fsmAction;
-
- public function __construct($return = NULL, $state = NULL, $action = NULL) {
- $this->fsmReturn = $return;
- $this->fsmState = $state;
- $this->fsmAction = $action;
- }
- }
- error_reporting($erFiniteStateMachine);
- unset($erFiniteStateMachine);
|