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