Skip to content

Commit

Permalink
Merge pull request codeigniter4#7779 from datamweb/docs-improve-uiux
Browse files Browse the repository at this point in the history
docs: remove `>` in console command
  • Loading branch information
samsonasik authored Aug 5, 2023
2 parents bc7d88d + b8444c0 commit 76c7d7e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions contributing/pull_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ as the existing code and ensures that the codebase will be as readable as possib
You can fix most of the coding style violations by running this command in your terminal:

```console
> composer cs-fix
composer cs-fix
```

You can check the coding style violations:

```console
> composer cs
composer cs
```

### Unit Testing
Expand Down Expand Up @@ -213,19 +213,19 @@ so that you can fix whatever errors that pop up with your submission.
PHPStan is expected to scan the entire framework by running this command in your terminal:

```console
> vendor/bin/phpstan analyse
vendor/bin/phpstan analyse
```

Rector, on the other hand, can be run on the specific files you modified or added:

```console
> vendor/bin/rector process --dry-run path/to/file
vendor/bin/rector process --dry-run path/to/file
```

If you run it without `--dry-run`, Rector will fix the code:

```console
> vendor/bin/rector process path/to/file
vendor/bin/rector process path/to/file
```

[1]: https://github.com/phpstan/phpstan-src
Expand Down

0 comments on commit 76c7d7e

Please sign in to comment.