Skip to content

Commit 668c796

Browse files
author
Mikhail Bakulin
committed
New PHP version added to the config
1 parent aa66e6f commit 668c796

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ php:
55
- 7.1
66
- 7.2
77
- 7.3
8+
- 7.4
89

910
install:
1011
- composer clear-cache
11-
- composer config github-oauth.github.com ${GITHUB_TOKEN};
12-
- composer global require fxp/composer-asset-plugin
1312
- composer install --no-interaction --prefer-dist
1413

1514
script: vendor/bin/phpunit
@@ -19,5 +18,4 @@ after_success:
1918

2019
cache:
2120
directories:
22-
- vendor
23-
- $HOME/.cache/composer
21+
- $HOME/.composer/cache

components/Routing.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ public function declareQueue(string $queueName)
9393
throw new RuntimeException("Queue `{$queueName}` is not configured.");
9494
}
9595

96-
$channel =
9796
$queue = $this->queues[$queueName];
9897
if (!isset($this->queuesDeclared[$queueName])) {
9998
if (ArrayHelper::isAssociative($queue)) {

phpunit.xml.dist

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<phpunit bootstrap="./tests/bootstrap.php"
3-
colors="true"
4-
convertErrorsToExceptions="true"
5-
convertNoticesToExceptions="true"
6-
convertWarningsToExceptions="true"
7-
stopOnFailure="false">
2+
<phpunit
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
5+
colors="true"
6+
beStrictAboutOutputDuringTests="false"
7+
beStrictAboutTestsThatDoNotTestAnything="true"
8+
verbose="true"
9+
bootstrap="./tests/bootstrap.php"
10+
convertErrorsToExceptions="true"
11+
convertNoticesToExceptions="true"
12+
convertWarningsToExceptions="true"
13+
convertDeprecationsToExceptions="false"
14+
stopOnFailure="false">
815
<testsuites>
916
<testsuite name="Test Suite">
1017
<directory>./tests</directory>

0 commit comments

Comments
 (0)