mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 15:03:25 +00:00
10 lines
187 B
PHP
10 lines
187 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\Notification\Mail;
|
|
|
|
interface MailWithLinkInterface
|
|
{
|
|
public function setButtonUrl($url);
|
|
public function setExpiration(\DateTime $expiration);
|
|
}
|