Skip to content

Test PHP 7.4 on Travis #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 12, 2020
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
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ php:
- '7.1'
- '7.2'
- '7.3'
- '7.4'

env:
global:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class AppendPayloadDocTest extends TestCase
/** @var ConstraintPayloadDocHelper */
private $helper;

public function setUp()
public function setUp(): void
{
$this->helper = new ConstraintPayloadDocHelper();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class GetTypeIfExistTest extends TestCase
/** @var ConstraintPayloadDocHelper */
private $helper;

public function setUp()
public function setUp(): void
{
$this->helper = new ConstraintPayloadDocHelper();
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Functional/App/Helper/DocTypeHelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class DocTypeHelperTest extends TestCase
/** @var DocTypeHelper */
private $helper;

public function setUp()
public function setUp(): void
{
$this->constraintPayloadDocHelper = $this->prophesize(ConstraintPayloadDocHelper::class);
$this->typeGuesser = $this->prophesize(TypeGuesser::class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class CollectionTest extends TestCase
/** @var MinMaxHelper */
private $helper;

public function setUp()
public function setUp(): void
{
$this->helper = new MinMaxHelper();
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Functional/App/Helper/MinMaxHelper/NumberTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class NumberTest extends TestCase
/** @var MinMaxHelper */
private $helper;

public function setUp()
public function setUp(): void
{
$this->helper = new MinMaxHelper();
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Functional/App/Helper/MinMaxHelper/StringTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class StringTest extends TestCase
/** @var MinMaxHelper */
private $helper;

public function setUp()
public function setUp(): void
{
$this->helper = new MinMaxHelper();
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Functional/App/Helper/StringDocHelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class StringDocHelperTest extends TestCase
/** @var StringDocHelper */
private $helper;

public function setUp()
public function setUp(): void
{
$this->helper = new StringDocHelper();
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Functional/App/Helper/TypeGuesserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class TypeGuesserTest extends TestCase
/** @var TypeGuesser */
private $guesser;

public function setUp()
public function setUp(): void
{
$this->guesser = new TypeGuesser();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class ConstraintToParamsDocTransformerTest extends TestCase
/** @var ConstraintToParamsDocTransformer */
private $transformer;

public function setUp()
public function setUp(): void
{
$this->docTypeHelper = $this->prophesize(DocTypeHelper::class);
$this->stringDocHelper = $this->prophesize(StringDocHelper::class);
Expand Down
2 changes: 1 addition & 1 deletion tests/Technical/App/Helper/DocTypeHelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class DocTypeHelperTest extends TestCase
/** @var DocTypeHelper */
private $helper;

public function setUp()
public function setUp(): void
{
$this->constraintPayloadDocHelper = $this->prophesize(ConstraintPayloadDocHelper::class);
$this->typeGuesser = $this->prophesize(TypeGuesser::class);
Expand Down
2 changes: 1 addition & 1 deletion tests/Technical/App/Helper/TypeGuesserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class TypeGuesserTest extends TestCase
/** @var TypeGuesser */
private $guesser;

public function setUp()
public function setUp(): void
{
$this->guesser = new TypeGuesser();
}
Expand Down