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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ before_install:
- phpenv config-rm xdebug.ini || echo "xdebug not available"
- echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
- export PATH="$PATH:$HOME/.composer/vendor/bin"
- wget -O phpunit.phar https://phar.phpunit.de/phpunit-6.5.phar
- wget -O phpunit.phar https://phar.phpunit.de/phpunit-7.5.phar
- if [[ $coverage = 1 ]]; then mkdir -p build/logs; fi
- if [[ $coverage = 1 ]]; then wget https://github.com/satooshi/php-coveralls/releases/download/v2.0.0/php-coveralls.phar; fi
- if [[ $lint = 1 ]]; then wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.10.0/php-cs-fixer.phar; fi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ApiPlatformCoreAnnotationGeneratorTest extends TestCase
*/
private $generator;

public function setUp()
protected function setUp(): void
{
$graph = new \EasyRdf_Graph();
$myEnum = new \EasyRdf_Resource('http://schema.org/MyEnum', $graph);
Expand Down
2 changes: 1 addition & 1 deletion tests/Command/GenerateTypesCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class GenerateTypesCommandTest extends TestCase
*/
private $fs;

public function setUp()
protected function setUp(): void
{
$this->fs = new Filesystem();
}
Expand Down