myCRM/src/Entity/Interface/ModuleAwareInterface.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;
}