Skip to content

Commit

Permalink
r upgrade all deps
Browse files Browse the repository at this point in the history
  • Loading branch information
dusterio committed Mar 8, 2022
1 parent 0b07af6 commit ea69f5d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@
}
],
"require": {
"php": ">=5.5.0",
"php": ">=7.0",
"menarasolutions/geographer-data": "^0.1.0"
},
"require-dev": {
"phpunit/phpunit": "4.*|5.*",
"codeclimate/php-test-reporter": "dev-master",
"illuminate/support": "5.*",
"phpunit/phpunit": "^9.0",
"illuminate/support": "5.*|6.*|7.*|8.*|9.*",
"menarasolutions/geographer-da": "0.*",
"menarasolutions/geographer-de": "0.*",
"menarasolutions/geographer-ru": "0.*",
Expand Down
2 changes: 1 addition & 1 deletion src/Traits/ExposesFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ trait ExposesFields
* @param mixed $offset
* @return boolean
*/
public function offsetExists($offset)
public function offsetExists($offset): bool
{
return isset($this->exposed[$offset]);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Geographer/Integration/CityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use MenaraSolutions\Geographer\City;
use MenaraSolutions\Geographer\State;

class CityTest extends \PHPUnit_Framework_TestCase
class CityTest extends \PHPUnit\Framework\TestCase
{
/**
* Countries that don't have any big cities
Expand Down
8 changes: 4 additions & 4 deletions tests/Geographer/Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@

use MenaraSolutions\Geographer\Earth;

abstract class Test extends \PHPUnit_Framework_TestCase
abstract class Test extends \PHPUnit\Framework\TestCase
{
use AnalyzesPerformance;

/**
* @return void
*/
public function setUp()
public function setUp(): void
{
$this->performanceHook();
parent::setUp();
Expand All @@ -20,9 +20,9 @@ public function setUp()
/**
* @return void
*/
public function tearDown()
public function tearDown(): void
{
$this->performanceCheck();
parent::tearDown();
}
}
}

0 comments on commit ea69f5d

Please sign in to comment.