| Current Path : /home/rtorresani/www/vendor/stripe/module-payments/Plugin/Quote/ |
| 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;
}
}
}