We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c29c2f commit 166f778Copy full SHA for 166f778
README.md
@@ -144,7 +144,7 @@ $this->emulateProduction();
144
Emulates that application is working at specified environment:
145
146
```php
147
-$this->emulateEnvironment('space');
+$this->emulateEnvironment('demo');
148
```
149
150
### ArtisanHelpers
tests/Helpers/ApplicationHelpersTest.php
@@ -21,8 +21,8 @@ public function it_can_emulate_production_environment()
21
/** @test */
22
public function it_can_emulate_any_environment()
23
{
24
- $this->emulateEnvironment('space');
+ $this->emulateEnvironment('demo');
25
26
- $this->assertEquals('space', $this->app->environment());
+ $this->assertEquals('demo', $this->app->environment());
27
}
28
0 commit comments