state = new StateCreated(); return $order; } public function setState(State $state) { $this->state = $state; } public function proceedToNext() { $this->state->proceedToNext($this); } public function toString() { return $this->state->toString(); } }