Removed uses of Base in core/lib/Thelia/Model

This commit is contained in:
Franck Allimant
2014-05-19 09:50:18 +02:00
parent b3b16e1fb1
commit d576e62082
3 changed files with 1 additions and 6 deletions

View File

@@ -25,8 +25,6 @@ namespace Thelia\Model;
use Propel\Runtime\Propel;
use Thelia\Model\Base\Coupon as BaseCoupon;
use Thelia\Model\Base\CouponCountryQuery;
use Thelia\Model\Base\CouponModuleQuery;
use Thelia\Model\Exception\InvalidArgumentException;
use Thelia\Model\Map\CouponTableMap;
use Thelia\Model\Tools\ModelEventDispatcherTrait;

View File

@@ -4,12 +4,10 @@ namespace Thelia\Model;
use Propel\Runtime\ActiveQuery\Criteria;
use Propel\Runtime\Connection\ConnectionInterface;
use Thelia\Core\Event\Order\OrderEvent;
use Thelia\Core\Event\TheliaEvents;
use Thelia\Model\Base\Order as BaseOrder;
use Thelia\Model\Base\OrderProductTaxQuery;
use Thelia\Model\Map\OrderProductTaxTableMap;
use Thelia\Model\Base\Order as BaseOrder;
use Thelia\Model\Tools\ModelEventDispatcherTrait;
class Order extends BaseOrder

View File

@@ -3,7 +3,6 @@
namespace Thelia\Model;
use Thelia\Model\Base\OrderCoupon as BaseOrderCoupon;
use Thelia\Model\Base\OrderCouponCountryQuery;
class OrderCoupon extends BaseOrderCoupon
{