File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -258,19 +258,19 @@ sudo docker run --rm -v $(pwd)/web/app:/app composer update
258
258
# ## Generating PHP API documentation
259
259
260
260
` ` ` sh
261
- sudo docker-compose exec php ./app/vendor/bin/apigen generate app/src --destination app/doc
261
+ sudo docker-compose exec -T php ./app/vendor/bin/apigen generate app/src --destination ./ app/doc
262
262
` ` `
263
263
264
264
# ## Testing PHP application with PHPUnit
265
265
266
266
` ` ` sh
267
- sudo docker-compose exec php ./app/vendor/bin/phpunit --colors=always --configuration app/
267
+ sudo docker-compose exec -T php ./app/vendor/bin/phpunit --colors=always --configuration ./ app/
268
268
` ` `
269
269
270
270
# ## Checking the standard code with [PSR2](http://www.php-fig.org/psr/psr-2/)
271
271
272
272
` ` ` sh
273
- sudo docker-compose exec php ./app/vendor/bin/phpcs --standard=PSR2 app/src
273
+ sudo docker-compose exec -T php ./app/vendor/bin/phpcs --standard=PSR2 ./ app/src
274
274
` ` `
275
275
276
276
# ## Checking installed PHP extensions
You can’t perform that action at this time.
0 commit comments