Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ sudo: required
dist: trusty
language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
env:
global:
- CORE_BRANCH=master
Expand All @@ -16,13 +16,13 @@ matrix:
allow_failures:
- env: DB=sqlite;CODECHECK=2
include:
- php: 7.1
- php: 7.3
env: DB=mysql
- php: 7.1
- php: 7.3
env: DB=pgsql
- php: 7.1
- php: 7.3
env: DB=sqlite;CODECHECK=1
- php: 7.1
- php: 7.3
env: DB=sqlite;CODECHECK=2
fast_finish: true

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class SharePointClientTest extends TestCase {
/** @var Client */
protected $client;

public function setUp() {
protected function setUp(): void {
parent::setUp();

$this->contextsFactory = $this->createMock(ContextsFactory::class);
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/StorageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class SharePointTest extends TestCase {
/** @var CappedMemoryCache|\PHPUnit_Framework_MockObject_MockObject */
protected $fileCache;

public function setUp() {
protected function setUp(): void {
parent::setUp();

$this->factory = $this->createMock(ContextsFactory::class);
Expand Down