15 lines
327 B
PHP
15 lines
327 B
PHP
<?php
|
|
|
|
namespace App\Entity\Interface;
|
|
|
|
interface ModuleAwareInterface
|
|
{
|
|
/**
|
|
* Returns the module code this entity belongs to.
|
|
* Must match the 'code' field in the modules table.
|
|
*
|
|
* @return string Module code (e.g., 'contacts', 'deals', 'users')
|
|
*/
|
|
public function getModuleName(): string;
|
|
}
|