1
0
mirror of https://github.com/DesignPatternsPHP/DesignPatternsPHP.git synced 2025-08-16 20:03:58 +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();
}
}