for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the eav package.
* @author Alex Kuperwood <[email protected]>
* @copyright 2025 Alex Kuperwood
* @license https://opensource.org/license/mit The MIT License
*/
declare(strict_types=1);
namespace Kuperwood\Eav\Enum;
use Kuperwood\Eav\Interfaces\DefineTableInterface;
class _PIVOT implements DefineTableInterface
{
public const ID = 'pivot_id';
public const DOMAIN_ID = 'domain_id';
public const SET_ID = 'set_id';
public const GROUP_ID = 'group_id';
public const ATTR_ID = 'attribute_id';
public static function table() : string
return 'eav_pivot';
}