15 lines
247 B
PHP
15 lines
247 B
PHP
<?php
|
|
|
|
namespace App\Framework\Database\Attributes;
|
|
|
|
use Attribute;
|
|
|
|
#[Attribute(Attribute::TARGET_CLASS)]
|
|
class Entity
|
|
{
|
|
public function __construct(
|
|
public ?string $tableName = null,
|
|
public string $idColumn = 'id'
|
|
) {}
|
|
}
|