Files
tickme/app/Classes/ValueObjects/Constants/Notifications.php
T
2020-05-11 14:43:49 +08:00

29 lines
659 B
PHP

<?php
namespace App\Classes\ValueObjects\Constants;
class Notifications
{
public const UNDEFINED = [
'title' => 'Unknown Action',
'message' => 'unknown message..'
];
public const AUTHENTICATION = [
'title' => 'Authentication',
'message' => 'You have successfully logged in to your account'
];
public const RESET_PASSWORD = [
'title' => 'Reset Password',
'message' => 'You have successfully sent you an email to reset your password'
];
public const CHANGE_PASSWORD = [
'title' => 'Change Password',
'message' => 'You password has changed successfully'
];
}