Skip to content
This repository was archived by the owner on Aug 14, 2022. It is now read-only.

Commit a7dc53b

Browse files
committed
composer phpcbf command fixed and remove phpunit coverage
1 parent e4030f6 commit a7dc53b

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ script:
4444
phpcs --standard=phpcs.xml $(find . -name '*.php')
4545
phpmd src,tests text ./phpmd.xml
4646
fi
47-
phpunit --coverage-clover=coverage.xml
4847
4948
after_success:
5049
- bash <(curl -s https://codecov.io/bash)

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"phpmd": "vendor/bin/phpmd src,tests text ./phpmd.xml",
5959
"fix": [
6060
"vendor/bin/php-cs-fixer fix -v",
61-
"vendor/bin/phpcbf src,tests"
61+
"vendor/bin/phpcbf src tests"
6262
],
6363
"tests": [
6464
"clear",

tests/FileTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class FileTest extends TestCase
2222
/**
2323
* File instance.
2424
*
25-
* @since 1.1.5
25+
* @since 1.1.6
2626
*
2727
* @var object
2828
*/
@@ -31,7 +31,7 @@ class FileTest extends TestCase
3131
/**
3232
* Set up.
3333
*
34-
* @since 1.1.5
34+
* @since 1.1.6
3535
*/
3636
public function setUp()
3737
{
@@ -43,7 +43,7 @@ public function setUp()
4343
/**
4444
* Check if it is an instance of File.
4545
*
46-
* @since 1.1.5
46+
* @since 1.1.6
4747
*/
4848
public function testIsInstanceOfFile()
4949
{

0 commit comments

Comments
 (0)