| Current Path : /home/rtorresani/www/vendor/magento/framework/Model/ResourceModel/Entity/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/Model/ResourceModel/Entity/Table.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Model\ResourceModel\Entity;
/**
* Class describing db table resource entity
*
*/
class Table extends \Magento\Framework\Model\ResourceModel\Entity\AbstractEntity
{
/**
* Get table
*
* @return String
*/
public function getTable()
{
return $this->getConfig('table');
}
}