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 9451757 commit bb66221Copy full SHA for bb66221
1 file changed
README.md
@@ -79,7 +79,7 @@ return [
79
* It's recommended to enable this setting in development
80
* to make it easy to spot mistakes.
81
*/
82
- 'strict' => ! app()->isProduction(),
+ 'strict' => env('APP_ENV', 'production') !== 'production',
83
84
/*
85
* Determines if it should use Unicode isolation marks (FSI, PDI)
@@ -94,7 +94,7 @@ return [
94
## Testing
95
96
```sh
97
-vendor/bin/phpunit --testdox # Tests
98
-vendor/bin/phpstan analyse # Static analysis
99
-vendor/bin/php-cs-fixer fix # Formatting
+vendor/bin/phpunit # Tests
+vendor/bin/phpstan analyse # Static analysis
+vendor/bin/php-cs-fixer fix # Formatting
100
```
0 commit comments