Skip to content

Commit bb66221

Browse files
committed
update readme
1 parent 9451757 commit bb66221

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ return [
7979
* It's recommended to enable this setting in development
8080
* to make it easy to spot mistakes.
8181
*/
82-
'strict' => ! app()->isProduction(),
82+
'strict' => env('APP_ENV', 'production') !== 'production',
8383

8484
/*
8585
* Determines if it should use Unicode isolation marks (FSI, PDI)
@@ -94,7 +94,7 @@ return [
9494
## Testing
9595

9696
```sh
97-
vendor/bin/phpunit --testdox # Tests
98-
vendor/bin/phpstan analyse # Static analysis
99-
vendor/bin/php-cs-fixer fix # Formatting
97+
vendor/bin/phpunit # Tests
98+
vendor/bin/phpstan analyse # Static analysis
99+
vendor/bin/php-cs-fixer fix # Formatting
100100
```

0 commit comments

Comments
 (0)