| 1 |
<?php |
| 2 |
/** |
| 3 |
* Repository for generic entities. |
| 4 |
* |
| 5 |
* @package SeQura/WC |
| 6 |
* @subpackage SeQura/WC/Repositories |
| 7 |
*/ |
| 8 |
|
| 9 |
namespace SeQura\WC\Repositories; |
| 10 |
|
| 11 |
/** |
| 12 |
* Repository for generic entities. |
| 13 |
*/ |
| 14 |
class Entity_Repository extends Repository { |
| 15 |
|
| 16 |
/** |
| 17 |
* Returns unprefixed table name. |
| 18 |
*/ |
| 19 |
protected function get_unprefixed_table_name(): string { |
| 20 |
return 'sequra_entity'; |
| 21 |
} |
| 22 |
} |
| 23 |
|