1
0
mirror of https://github.com/DesignPatternsPHP/DesignPatternsPHP.git synced 2025-07-16 04:46:22 +02:00

remove comment and superfluously state

This commit is contained in:
ko22009
2017-05-10 18:53:03 +05:00
parent ad163dc353
commit 590b15b58d

@ -11,8 +11,6 @@ class CreateOrder extends StateOrder
protected function done()
{
$order = new ShippingOrder();
static::$state = $order;
//$this->setStatus('shipping');
static::$state = new ShippingOrder();
}
}