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