This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
final class CardActivationReminder extends Notification implements MailNotificationInterface | |
{ | |
use Queueable; | |
/** | |
* @var User | |
*/ | |
private $user; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ChangeEmailController extends Controller | |
{ | |
public function index(Request $request) | |
{ | |
try { | |
$this->commandBus->handle(new ChangeEmailCommand($subscriptionId, $request->input('email')); | |
} catch (UnableToSendEmailChangeRequestException $exception) { |
OlderNewer