File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,13 +44,13 @@ as the existing code and ensures that the codebase will be as readable as possib
4444You can fix most of the coding style violations by running this command in your terminal:
4545
4646``` console
47- > composer cs-fix
47+ composer cs-fix
4848```
4949
5050You can check the coding style violations:
5151
5252``` console
53- > composer cs
53+ composer cs
5454```
5555
5656### Unit Testing
@@ -213,19 +213,19 @@ so that you can fix whatever errors that pop up with your submission.
213213PHPStan is expected to scan the entire framework by running this command in your terminal:
214214
215215``` console
216- > vendor/bin/phpstan analyse
216+ vendor/bin/phpstan analyse
217217```
218218
219219Rector, on the other hand, can be run on the specific files you modified or added:
220220
221221``` console
222- > vendor/bin/rector process --dry-run path/to/file
222+ vendor/bin/rector process --dry-run path/to/file
223223```
224224
225225If you run it without ` --dry-run ` , Rector will fix the code:
226226
227227``` console
228- > vendor/bin/rector process path/to/file
228+ vendor/bin/rector process path/to/file
229229```
230230
231231[ 1 ] : https://github.com/phpstan/phpstan-src
You can’t perform that action at this time.
0 commit comments