| Current Path : /home/rtorresani/www/vendor/magento/module-sales/Model/Order/Creditmemo/Total/ |
| Current File : //home/rtorresani/www/vendor/magento/module-sales/Model/Order/Creditmemo/Total/AbstractTotal.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Sales\Model\Order\Creditmemo\Total;
/**
* Base class for credit memo total
* @api
*
* @author Magento Core Team <core@magentocommerce.com>
* @since 100.0.2
*/
abstract class AbstractTotal extends \Magento\Sales\Model\Order\Total\AbstractTotal
{
/**
* Collect credit memo subtotal
*
* @param \Magento\Sales\Model\Order\Creditmemo $creditmemo
* @return $this
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function collect(\Magento\Sales\Model\Order\Creditmemo $creditmemo)
{
return $this;
}
}