Skip to content

Commit 8d11861

Browse files
committed
Fixing travis and PHPStan
1 parent a198f0b commit 8d11861

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.travis.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ cache:
66
- $HOME/.composer/cache
77
matrix:
88
include:
9+
- php: 7.4
10+
env: PREFER_LOWEST="" DB=mysql RUN_PHPSTAN=1 RUN_CSCHECK=1 RUN_REQUIRECHECKER=1 NO_WEAKREF=1
11+
services:
12+
- mysql
913
- php: 7.2
10-
env: PREFER_LOWEST="" DB=mysql RUN_PHPSTAN=1 RUN_CSCHECK=1 RUN_REQUIRECHECKER=1
14+
env: PREFER_LOWEST="" DB=mysql
1115
services:
1216
- mysql
1317
- php: 7.3
@@ -57,11 +61,13 @@ matrix:
5761
postgresql: "9.6"
5862
services:
5963
- postgresql
60-
allow_failures:
61-
- php: 7.3 # 7.3 allowed to fail due to an issue with greenlion/PHP-SQL-Parser: https://github.com/greenlion/PHP-SQL-Parser/pull/304
64+
- php: 7.3
6265
env: PREFER_LOWEST="" DB=mysql NO_WEAKREF=1
63-
- php: 7.4
66+
- php: nightly
6467
env: PREFER_LOWEST="" DB=mysql NO_WEAKREF=1
68+
allow_failures:
69+
- php: 7.3 # 7.3 allowed to fail due to an issue with greenlion/PHP-SQL-Parser: https://github.com/greenlion/PHP-SQL-Parser/pull/304
70+
- php: nightly
6571
- php: 7.1
6672
env: PREFER_LOWEST="" DB=oracle PHPUNITFILE="-c phpunit.oracle.xml"
6773
- php: 7.1

src/TDBMService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class TDBMService
102102
* Access is done by table name and then by primary key.
103103
* If the primary key is split on several columns, access is done by an array of columns, serialized.
104104
*
105-
* @var StandardObjectStorage|WeakrefObjectStorage
105+
* @var ObjectStorageInterface
106106
*/
107107
private $objectStorage;
108108

0 commit comments

Comments
 (0)