We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 021e8ff commit 98bcd5dCopy full SHA for 98bcd5d
.travis.yml
@@ -6,12 +6,11 @@ matrix:
6
- php: 7.4
7
- php: nightly
8
allow_failures:
9
- - php: 7.4
10
11
12
before_script:
13
- composer self-update
14
- - travis_retry composer install --prefer-source --no-interaction
+ - travis_retry composer install --prefer-dist --no-interaction
15
script:
16
- vendor/bin/phpunit --coverage-clover=coverage.xml
17
after_success:
tests/FormatterTest.php
@@ -8,7 +8,7 @@
class FormatterTest extends TestCase {
public function testClassInit(): void {
$this->expectException(\Error::class);
- $formatter = new Formatter();
+ new Formatter();
}
public function testSecondFormatter(): void {
0 commit comments