RemindableInterface::getReminderEmail()

string getReminderEmail() Get the e-mail address where password reminders are sent. Return Value string

RemindableTrait

RemindableTrait trait RemindableTrait (View source) Methods string getReminderEmail() Get the e-mail address where password reminders are sent.

RemindableTrait::getReminderEmail()

string getReminderEmail() Get the e-mail address where password reminders are sent. Return Value string

ReminderRepositoryInterface

ReminderRepositoryInterface interface ReminderRepositoryInterface (View source) Methods string create(RemindableInterface $user) Create a new reminder record and token. bool exists(RemindableInterface $user, string $token) Determine if a reminder record exists and is valid. void delete(string $token) Delete a reminder record by token. void deleteExpired() Delete expired reminders.

ReminderRepositoryInterface::create()

string create(RemindableInterface $user) Create a new reminder record and token. Parameters RemindableInterface $user Return Value string

ReminderRepositoryInterface::delete()

void delete(string $token) Delete a reminder record by token. Parameters string $token Return Value void

ReminderRepositoryInterface::deleteExpired()

void deleteExpired() Delete expired reminders. Return Value void

ReminderRepositoryInterface::exists()

bool exists(RemindableInterface $user, string $token) Determine if a reminder record exists and is valid. Parameters RemindableInterface $user string $token Return Value bool

RemindersControllerCommand

RemindersControllerCommand class RemindersControllerCommand extends Command (View source) Methods void __construct(Filesystem $files) Create a new reminder table command instance. int run(InputInterface $input, OutputInterface $output) Run the console command. from Command int call(string $command, array $arguments = array()) Call another console command. from Command int callSilent(string $command, array $arguments = array()) Call another console command silently. from Comm

RemindersControllerCommand::argument()

string|array argument(string $key = null) Get the value of a command argument. Parameters string $key Return Value string|array