Skip to content

Commit

Permalink
Update container with required interfaces and such
Browse files Browse the repository at this point in the history
  • Loading branch information
FoxxMD committed Oct 6, 2016
1 parent 25a27ce commit 2c65b5e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/ContainerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
namespace Fulfillment\OMS;


use Fulfillment\OMS\Models\Response\SkuProduct;
use Fulfillment\OMS\Models\Response\TrackingInfo;
use Fulfillment\OMS\Models\Response\OrderStatus;
use Fulfillment\OMS\Models\Response\Inventory;
Expand All @@ -25,6 +26,7 @@ class ContainerFactory {
\Fulfillment\OMS\Models\Response\Contracts\Sku::class => Sku::class,
\Fulfillment\OMS\Models\Response\Contracts\OrderStatus::class => OrderStatus::class,
\Fulfillment\OMS\Models\Response\Contracts\TrackingInfo::class => TrackingInfo::class,
\Fulfillment\OMS\Models\Response\Contracts\SkuProduct::class => SkuProduct::class
];

protected $interfaces = [
Expand All @@ -35,6 +37,8 @@ class ContainerFactory {
\Fulfillment\OMS\Models\Response\Contracts\Product::class,
\Fulfillment\OMS\Models\Response\Contracts\Sku::class,
\Fulfillment\OMS\Models\Response\Contracts\OrderStatus::class,
\Fulfillment\OMS\Models\Response\Contracts\TrackingInfo::class,
\Fulfillment\OMS\Models\Response\Contracts\SkuProduct::class
];

/**
Expand Down

0 comments on commit 2c65b5e

Please sign in to comment.