コード例 #1
0
ファイル: SimpleStep.php プロジェクト: stojg/stepper
 public function rollback(State $state)
 {
     $state->add('rollback' . $this->id, 'rollback' . $this->id);
 }
コード例 #2
0
ファイル: StateTest.php プロジェクト: stojg/stepper
 public function testGetNotExists()
 {
     $state = new State();
     $this->assertNull($state->get('nope'));
 }