Skip to content

Wiki/Usage: update paths in commands #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions wiki/Usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ To enable progress reporting, use the `-p` command line argument.
With progress output enabled, PHP_CodeSniffer will print a single-character status for each file being checked, like so:

```bash
$ phpcs /path/to/code/CodeSniffer -p
$ phpcs /path/to/project -p

...S........W.........S..................................... 60 / 110 (54%)
..........EEEE.E.E.E.E.E.E.E.E..W..EEE.E.E.E.EE.E. 110 / 110 (100%)
Expand All @@ -247,7 +247,7 @@ Legend for the progress indicators:
With verbose output enabled, PHP_CodeSniffer will print the file that it is checking, show you how many tokens and lines the file contains, and let you know how long it took to process. The output will look like this:

```bash
$ phpcs /path/to/code/CodeSniffer -v
$ phpcs /path/to/project -v

Registering sniffs in PEAR standard... DONE (28 sniffs registered)
Creating file list... DONE (158 files in queue)
Expand Down