Dumplie\Customer\Infrastructure\InMemory\InMemoryCheckouts::__construct PHP Method

__construct() public method

public __construct ( array $checkouts = [] )
$checkouts array
    public function __construct(array $checkouts = [])
    {
        $this->checkouts = [];
        foreach ($checkouts as $checkout) {
            $this->add($checkout);
        }
    }