Exemplo n.º 1
0
 /**
  * Constructor
  */
 public function __construct(ICE_Component $component = null)
 {
     parent::__construct($component);
     // set token and bump it
     $this->token = self::$next_token++;
     // init logic stack
     $this->logic = new ICE_Stack();
 }
Exemplo n.º 2
0
 /**
  * Constructor
  */
 public function __construct(ICE_Component $component = null)
 {
     parent::__construct($component);
     // set token and bump it
     $this->token = self::$next_token++;
 }
Exemplo n.º 3
0
 /**
  * Constructor
  */
 public function __construct(ICE_Component $component = null)
 {
     parent::__construct($component);
     // init rules map
     $this->rules = new ICE_Map();
 }