Files
DesignPatternsPHP/State/OrderFactory.php
Dominik Liebler 8452c63b7e cs State
2013-09-13 14:05:31 +02:00

35 lines
726 B
PHP

<?php
namespace DesignPatterns\Status;
/**
* Class OrderFactory
*/
class OrderFactory
{
private function __construct()
{
throw Exception('Can not instance the OrderFactory class!');
}
/**
* @param int $id
*
* @return CreateOrder|ShippingOrder
* @throws \Exception
*/
public static function getOrder($id)
{
$order = 'Get Order From Database';
switch ($order['status']) {
case 'created':
return new CreateOrder($order);
case 'shipping':
return new ShippingOrder($order);
default:
throw new \Exception('Order status error!');
break;
}
}
}