| Current Path : /var/www/www.indacotrentino.com/www/vendor/magento/module-tax/Model/TaxClass/Type/ |
| Current File : /var/www/www.indacotrentino.com/www/vendor/magento/module-tax/Model/TaxClass/Type/TypeInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Tax\Model\TaxClass\Type;
/**
* Interface \Magento\Tax\Model\TaxClass\Type\TypeInterface
*
* @api
*/
interface TypeInterface
{
/**
* Check are any objects assigned to the tax class
*
* @return bool
*/
public function isAssignedToObjects();
/**
* Get Collection of Tax Rules that are assigned to this tax class
*
* @return \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
*/
public function getAssignedToRules();
/**
* Get Name of Objects that use this Tax Class Type
*
* @return string
*/
public function getObjectTypeName();
}