Skip to content

Commit

Permalink
composer phpcbf command fixed and remove phpunit coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
josantonius committed Nov 12, 2017
1 parent 02fe8b5 commit 97aa912
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ script:
phpcs --standard=phpcs.xml $(find . -name '*.php')
phpmd src,tests text ./phpmd.xml
fi
phpunit --coverage-clover=coverage.xml
after_success:
- bash <(curl -s https://codecov.io/bash)
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"phpmd": "vendor/bin/phpmd src,tests text ./phpmd.xml",
"fix": [
"vendor/bin/php-cs-fixer fix -v",
"vendor/bin/phpcbf src,tests"
"vendor/bin/phpcbf src tests"
],
"tests": [
"clear",
Expand Down
6 changes: 3 additions & 3 deletions tests/HookTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ final class HookTest extends TestCase
/**
* Hook instance.
*
* @since 1.1.5
* @since 1.0.9
*
* @var object
*/
Expand All @@ -31,7 +31,7 @@ final class HookTest extends TestCase
/**
* Set up.
*
* @since 1.1.5
* @since 1.0.9
*/
public function setUp()
{
Expand All @@ -43,7 +43,7 @@ public function setUp()
/**
* Check if it is an instance of Hook.
*
* @since 1.1.5
* @since 1.0.9
*/
public function testIsInstanceOfHook()
{
Expand Down

0 comments on commit 97aa912

Please sign in to comment.