Skip to content

Commit b8444c0

Browse files
committed
docs: remove > in console command
1 parent 892f404 commit b8444c0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

contributing/pull_request.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ as the existing code and ensures that the codebase will be as readable as possib
4444
You 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

5050
You 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.
213213
PHPStan 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

219219
Rector, 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

225225
If 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

0 commit comments

Comments
 (0)