diff options
Diffstat (limited to 'tests/app/Census/CensusColumnMotherForeignTest.php')
| -rw-r--r-- | tests/app/Census/CensusColumnMotherForeignTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/app/Census/CensusColumnMotherForeignTest.php b/tests/app/Census/CensusColumnMotherForeignTest.php index 75d12434c5..a8384b6386 100644 --- a/tests/app/Census/CensusColumnMotherForeignTest.php +++ b/tests/app/Census/CensusColumnMotherForeignTest.php @@ -58,7 +58,7 @@ class CensusColumnMotherForeignTest extends \Fisharebest\Webtrees\TestCase * * @return void */ - public function testSameCountry() + public function testSameCountry(): void { $mother = Mockery::mock(Individual::class); $mother->shouldReceive('getBirthPlace')->andReturn($this->getPlaceMock('London, England')); @@ -83,7 +83,7 @@ class CensusColumnMotherForeignTest extends \Fisharebest\Webtrees\TestCase * * @return void */ - public function testDifferentCountry() + public function testDifferentCountry(): void { $mother = Mockery::mock(Individual::class); $mother->shouldReceive('getBirthPlace')->andReturn($this->getPlaceMock('London, England')); @@ -108,7 +108,7 @@ class CensusColumnMotherForeignTest extends \Fisharebest\Webtrees\TestCase * * @return void */ - public function testPlaceNoParent() + public function testPlaceNoParent(): void { $family = Mockery::mock(Family::class); $family->shouldReceive('getWife')->andReturn(null); @@ -130,7 +130,7 @@ class CensusColumnMotherForeignTest extends \Fisharebest\Webtrees\TestCase * * @return void */ - public function testPlaceNoParentFamily() + public function testPlaceNoParentFamily(): void { $individual = Mockery::mock(Individual::class); $individual->shouldReceive('getPrimaryChildFamily')->andReturn(null); |
