1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
-
-
-
-
-
-
-
-
- class Yay_SimpleState extends Yay_SimpleStatePredicate implements Yay_State
- {
-
-
-
- public function __construct(Yay_States $stateMachine, $stateName)
- {
- parent::__construct($stateMachine, $stateName, true);
- }
-
-
-
- public function activate()
- {
- $this->_stateMachine->become($this->_stateName);
- }
-
- }
|