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