Skip to content

Commit

Permalink
Fix deprecated use of hashtags for comments in config example.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Bruce committed Jan 7, 2015
1 parent 69fe2b5 commit b3b7de0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dunitconfig.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# the list of docker images to run against
; the list of docker images to run against
images="
vectorface/php5.3
vectorface/php5.4
Expand All @@ -7,12 +7,12 @@ images="
vectorface/hhvm";


# a flag indicating whether to run the syntax check
; a flag indicating whether to run the syntax check
checkSyntax="true";
# the syntax command to execute
; the syntax command to execute
syntaxCommand="find /opt/source -type f -name \"*.php\" ! -path \"*/vendor/*\" -print0 | xargs -0 -n 1 -P 8 php -l | grep -v 'No syntax errors'"

# a flag indicating whether to run the phpunit test suite
; a flag indicating whether to run the phpunit test suite
runTests="true";
# the phpunit command to execute
; the phpunit command to execute
unitTestsCommand="/opt/source/vendor/bin/phpunit"

0 comments on commit b3b7de0

Please sign in to comment.