Skip to content

Commit

Permalink
No need for wildcard when running phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
tuupola committed Apr 13, 2015
1 parent 8003725 commit 29429ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ You can run tests either manually...

``` bash
$ vendor/bin/phpunit
$ vendor/bin/phpcs --standard=PSR2 src/* -p
$ vendor/bin/phpcs --standard=PSR2 src/ -p
```

... or automatically on every code change.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ $app->add(new \Slim\Middleware\JwtAuthentication([

``` bash
$ vendor/bin/phpunit
$ vendor/bin/phpcs --standard=PSR2 src/* -p
$ vendor/bin/phpcs --standard=PSR2 src/ -p
```

## Contributing
Expand Down

0 comments on commit 29429ad

Please sign in to comment.