ulmus/src/Attribute/RegisterEntityEventInterface.php

10 lines
180 B
PHP

<?php
namespace Ulmus\Attribute;
use Ulmus\Entity\EntityInterface;
interface RegisterEntityEventInterface
{
public function attach(EntityInterface $entity, string $field);
}