Closed hameesakhan closed 2 years ago
If a user has defined TWILIO_DEBUG_TO= in .env then it should also be considered as NULL. Before this change $debugTo was being set to "" (strlen($debugTo) = 0). This change will prevent this unexpected behavior.
TWILIO_DEBUG_TO=
NULL
$debugTo
""
strlen($debugTo) = 0
If a user has defined
TWILIO_DEBUG_TO=
in .env then it should also be considered asNULL
. Before this change$debugTo
was being set to""
(strlen($debugTo) = 0
). This change will prevent this unexpected behavior.