You are here

public function StateMachine_State::__construct in State Machine 7.2

Same name and namespace in other branches
  1. 6 inc/base.inc \StateMachine_State::__construct()
  2. 7.3 inc/base.inc \StateMachine_State::__construct()
  3. 7 inc/base.inc \StateMachine_State::__construct()

File

inc/base.inc, line 229
base.inc

Class

StateMachine_State

Code

public function __construct($key, $machine, $options = array()) {
  $this->key = $key;
  $this->machine = $machine;
  $this->options = $options;
}