. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License version 3. * * In accordance with Section 7(b) of the GNU Affero General Public License version 3, * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. ************************************************************************/ namespace Espo\ORM\Repository; use Espo\ORM\Entity; use Espo\ORM\Query\Select; class EmptyHookMediator implements HookMediator { public function beforeSave(Entity $entity, array $options): void {} public function afterSave(Entity $entity, array $options): void {} public function beforeRemove(Entity $entity, array $options): void {} public function afterRemove(Entity $entity, array $options): void {} public function beforeRelate(Entity $entity, string $relationName, Entity $foreignEntity, ?array $columnData, array $options): void {} public function afterRelate(Entity $entity, string $relationName, Entity $foreignEntity, ?array $columnData, array $options): void {} public function beforeUnrelate(Entity $entity, string $relationName, Entity $foreignEntity, array $options): void {} public function afterUnrelate(Entity $entity, string $relationName, Entity $foreignEntity, array $options): void {} public function beforeMassRelate(Entity $entity, string $relationName, Select $query, array $options): void {} public function afterMassRelate(Entity $entity, string $relationName, Select $query, array $options): void {} }