Rappasoft
Packages & Docs
Products
Blog
Resources
Quizzes
Sign In
Menu
Packages & Docs
Products
Blog
Resources
Quizzes
About
Quiz Question Issue
"How would you determine you're currently in the testing environment?"
Topic
Laravel
Question
How would you determine you're currently in the testing environment?
Option
Select Option (Optional)...
if (App::environment('testing')) { // The environment is testing }
if (App::testing()) { // The environment is testing }
if (App::environmentIs('testing')) { // The environment is testing }
Issue
Send
->