Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/stripe/module-payments/Plugin/Quote/
Upload File :
Current File : //home/rtorresani/www/vendor/stripe/module-payments/Plugin/Quote/ExpiredQuotesCollection.php

<?php
namespace StripeIntegration\Payments\Plugin\Quote;

class ExpiredQuotesCollection
{
    public function afterGetExpiredQuotes($store, $quoteCollection)
    {
        try
        {
            $quoteCollection->addFieldToFilter('is_used_for_recurring_orders', ['neq' => true]);
            return $quoteCollection;
        }
        catch (\Exception $e)
        {
            return $quoteCollection;
        }
    }
}