added email change strategies

This commit is contained in:
Antonio Ramirez
2016-12-10 14:14:42 +01:00
parent 3fe09e3eb3
commit e215fd58bf
19 changed files with 626 additions and 119 deletions

View File

@ -0,0 +1,9 @@
<?php
namespace Da\User\Contracts;
interface MailChangeStrategyInterface extends StrategyInterface
{
const TYPE_INSECURE = 0;
const TYPE_DEFAULT = 1;
const TYPE_SECURE = 2;
}