| Current Path : /home/rtorresani/www/vendor/magento/module-sales/Model/Order/Invoice/ |
| Current File : //home/rtorresani/www/vendor/magento/module-sales/Model/Order/Invoice/InvoiceValidatorInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Sales\Model\Order\Invoice;
use Magento\Sales\Api\Data\InvoiceInterface;
use Magento\Sales\Exception\DocumentValidationException;
use Magento\Sales\Model\ValidatorInterface;
use Magento\Sales\Model\ValidatorResultInterface;
/**
* Interface InvoiceValidatorInterface
* @api
*/
interface InvoiceValidatorInterface
{
/**
* @param InvoiceInterface $entity
* @param ValidatorInterface[] $validators
* @return ValidatorResultInterface
* @throws DocumentValidationException
*/
public function validate(InvoiceInterface $entity, array $validators);
}