Skip to content

Commit 2a48b0c

Browse files
authored
Fix: Order (#953)
1 parent 02931b9 commit 2a48b0c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ it: coding-standards tests ## Runs all the targets
99
code-coverage: vendor ## Collects code coverage from running unit tests with phpunit/phpunit
1010
vendor/bin/phpunit --configuration=tests/phpunit.xml --coverage-text --testsuite=unit
1111

12-
.PHONY: help
13-
help: ## Displays this list of targets with descriptions
14-
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}'
15-
1612
.PHONY: coding-standards
1713
coding-standards: vendor ## Fixes code style issues with friendsofphp/php-cs-fixer
1814
vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --diff --show-progress=dots --verbose
1915

16+
.PHONY: help
17+
help: ## Displays this list of targets with descriptions
18+
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}'
19+
2020
.PHONY: tests
2121
tests: vendor ## Runs unit and end-to-end tests with phpunit/phpunit
2222
vendor/bin/phpunit --configuration=tests/phpunit.xml --testsuite=unit

0 commit comments

Comments
 (0)