Skip to content

Commit b662dc2

Browse files
Merge branch '5.0' of github.com:darkwebdesign/symfony-addon-pack into ISSUE-189
2 parents b28f8d3 + 92caf01 commit b662dc2

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ env:
55
language: 'php'
66

77
php:
8-
- '7.1'
98
- '7.2'
109
- '7.3'
1110
- '7.4'
@@ -19,7 +18,7 @@ before_script:
1918
- './cc-test-reporter before-build'
2019

2120
script:
22-
- 'vendor/bin/phpunit'
21+
- 'XDEBUG_MODE=coverage vendor/bin/phpunit'
2322

2423
after_success:
2524
- 'bash <(curl -s https://codecov.io/bash) -f build/logs/clover.xml'

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
{"name": "Raymond Schouten"}
1010
],
1111
"require": {
12+
"php": ">=7.2.5",
1213
"darkwebdesign/symfony-addon-transformers": "5.0.*",
1314
"doctrine/common": "^2.4",
14-
"php": ">=7.1.3",
1515
"symfony/form": "5.0.*"
1616
},
1717
"require-dev": {

tests/EntityTypeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class EntityTypeTest extends TypeTestCase
5353
/** @var \Doctrine\Common\Persistence\Mapping\ClassMetadata|\PHPUnit_Framework_MockObject_MockObject */
5454
private $metadata;
5555

56-
protected function setUp()
56+
protected function setUp(): void
5757
{
5858
$this->entity = new City();
5959
$this->entity->setId(123);

0 commit comments

Comments
 (0)