mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-04-25 09:58:21 +02:00
10 lines
145 B
PHP
10 lines
145 B
PHP
<?php
|
|
|
|
|
|
namespace AppBundle\Association;
|
|
|
|
interface MembershipReminderInterface
|
|
{
|
|
public function sendReminder(NotifiableInterface $user);
|
|
}
|