mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-25 17:52:13 +01:00
11 lines
137 B
PHP
11 lines
137 B
PHP
<?php
|
|
|
|
|
|
namespace AppBundle\Association;
|
|
|
|
interface NotifiableInterface
|
|
{
|
|
public function getId();
|
|
public function getEmail();
|
|
}
|