Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total  
 
 
 
CRAP  
 
<?php
/**
 * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
 */
namespace Team3\PayU\Order\Model\ShippingMethods;
use Team3\PayU\Order\Model\IsFilledInterface;
interface ShippingMethodCollectionInterface extends \IteratorAggregate, \Countable, IsFilledInterface
{
    /**
     * @return ShippingMethodInterface[]
     */
    public function getShippingMethods();
    /**
     * @inheritdoc
     */
    public function addShippingMethod(ShippingMethodInterface $shippingMethod);
    /**
     * @param ShippingMethodInterface[] $shippingMethods
     *
     * @return ShippingMethodCollection
     */
    public function setShippingMethods(array $shippingMethods);
}