From 877d031baeb4dee420a845040aa72b41ea4444d4 Mon Sep 17 00:00:00 2001 From: M#3 Date: Tue, 31 Mar 2020 01:20:56 +0530 Subject: [PATCH] Namespace import reference missing --- notifier/texters.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/notifier/texters.rst b/notifier/texters.rst index 897d02df4b4..d4a0a91aa55 100644 --- a/notifier/texters.rst +++ b/notifier/texters.rst @@ -14,6 +14,10 @@ you to send SMS messages:: // src/Controller/SecurityController.php namespace App\Controller; + + use Symfony\Component\Notifier\Message\SmsMessage; + use Symfony\Component\Notifier\TexterInterface; + use Symfony\Component\Routing\Annotation\Route; class SecurityController {