diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2018-09-28 00:40:37 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2018-09-28 00:40:37 +0100 |
| commit | 52348eb8c11b06a8488e13475e6561273832716a (patch) | |
| tree | 0730bf446a089430ecc789213878c98734b8d953 | |
| parent | 8dded14167f3cf2866bfdc9fea81c35d3d36ea75 (diff) | |
| download | webtrees-52348eb8c11b06a8488e13475e6561273832716a.tar.gz webtrees-52348eb8c11b06a8488e13475e6561273832716a.tar.bz2 webtrees-52348eb8c11b06a8488e13475e6561273832716a.zip | |
PHPdoc
317 files changed, 5081 insertions, 914 deletions
diff --git a/app/Date/CalendarDate.php b/app/Date/CalendarDate.php index 4c4132e301..8315a42d28 100644 --- a/app/Date/CalendarDate.php +++ b/app/Date/CalendarDate.php @@ -34,8 +34,8 @@ use Fisharebest\Webtrees\I18N; */ class CalendarDate { - /** @var int[] Convert GEDCOM month names to month numbers */ - public static $MONTH_ABBREV = [ + // Convert GEDCOM month names to month numbers + const MONTH_ABBREVIATIONS = [ '' => 0, 'JAN' => 1, 'FEB' => 2, @@ -51,8 +51,8 @@ class CalendarDate 'DEC' => 12, ]; - /** @var string[] Convert numbers to/from roman numerals */ - protected static $roman_numerals = [ + // Convert numbers to/from roman numerals + const ROMAN_NUMERALS = [ 1000 => 'M', 900 => 'CM', 500 => 'D', @@ -108,8 +108,8 @@ class CalendarDate // Construct from an array (of three gedcom-style strings: "1900", "FEB", "4") if (is_array($date)) { $this->d = (int) $date[2]; - if (array_key_exists($date[1], static::$MONTH_ABBREV)) { - $this->m = static::$MONTH_ABBREV[$date[1]]; + if (array_key_exists($date[1], static::MONTH_ABBREVIATIONS)) { + $this->m = static::MONTH_ABBREVIATIONS[$date[1]]; } else { $this->m = 0; $this->d = 0; @@ -983,7 +983,7 @@ class CalendarDate return 'ADR'; } - return array_search($this->m, static::$MONTH_ABBREV); + return array_search($this->m, static::MONTH_ABBREVIATIONS); } /** @@ -1030,14 +1030,14 @@ class CalendarDate * * @return string */ - protected function numberToRomanNumerals($number): string + protected function numberToRomanNumerals(int $number): string { if ($number < 1) { // Cannot convert zero/negative numbers return (string) $number; } $roman = ''; - foreach (self::$roman_numerals as $key => $value) { + foreach (self::ROMAN_NUMERALS as $key => $value) { while ($number >= $key) { $roman .= $value; $number -= $key; @@ -1054,10 +1054,10 @@ class CalendarDate * * @return int */ - protected function romanNumeralsToNumber($roman): int + protected function romanNumeralsToNumber(string $roman): int { $num = 0; - foreach (self::$roman_numerals as $key => $value) { + foreach (self::ROMAN_NUMERALS as $key => $value) { if (strpos($roman, $value) === 0) { $num += $key; $roman = substr($roman, strlen($value)); diff --git a/app/Date/FrenchDate.php b/app/Date/FrenchDate.php index 7cd9284cf2..723edf50b0 100644 --- a/app/Date/FrenchDate.php +++ b/app/Date/FrenchDate.php @@ -23,8 +23,8 @@ use Fisharebest\Webtrees\I18N; */ class FrenchDate extends CalendarDate { - /** @var int[] Convert GEDCOM month names to month numbers */ - public static $MONTH_ABBREV = [ + // Convert GEDCOM month names to month numbers + const MONTH_ABBREVIATIONS = [ '' => 0, 'VEND' => 1, 'BRUM' => 2, diff --git a/app/Date/HijriDate.php b/app/Date/HijriDate.php index b46c41c66a..92bb106e89 100644 --- a/app/Date/HijriDate.php +++ b/app/Date/HijriDate.php @@ -26,8 +26,8 @@ use Fisharebest\Webtrees\I18N; */ class HijriDate extends CalendarDate { - /** @var int[] Convert GEDCOM month names to month numbers */ - public static $MONTH_ABBREV = [ + // Convert GEDCOM month names to month numbers + const MONTH_ABBREVIATIONS = [ '' => 0, 'MUHAR' => 1, 'SAFAR' => 2, diff --git a/app/Date/JalaliDate.php b/app/Date/JalaliDate.php index 0e4722d3de..e59b394243 100644 --- a/app/Date/JalaliDate.php +++ b/app/Date/JalaliDate.php @@ -23,8 +23,8 @@ use Fisharebest\Webtrees\I18N; */ class JalaliDate extends CalendarDate { - /** @var int[] Convert GEDCOM month names to month numbers */ - public static $MONTH_ABBREV = [ + // Convert GEDCOM month names to month numbers + const MONTH_ABBREVIATIONS = [ '' => 0, 'FARVA' => 1, 'ORDIB' => 2, diff --git a/app/Date/JewishDate.php b/app/Date/JewishDate.php index 09089d9d0b..46ab47bfea 100644 --- a/app/Date/JewishDate.php +++ b/app/Date/JewishDate.php @@ -23,8 +23,8 @@ use Fisharebest\Webtrees\I18N; */ class JewishDate extends CalendarDate { - /** @var int[] Convert GEDCOM month names to month numbers */ - public static $MONTH_ABBREV = [ + // Convert GEDCOM month names to month numbers + const MONTH_ABBREVIATIONS = [ '' => 0, 'TSH' => 1, 'CSH' => 2, diff --git a/tests/app/AuthTest.php b/tests/app/AuthTest.php index ebc5898518..8361dd29ad 100644 --- a/tests/app/AuthTest.php +++ b/tests/app/AuthTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class AuthTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Census/CensusColumnAgeFemale5YearsTest.php b/tests/app/Census/CensusColumnAgeFemale5YearsTest.php index 61e28c3dac..e76d35429d 100644 --- a/tests/app/Census/CensusColumnAgeFemale5YearsTest.php +++ b/tests/app/Census/CensusColumnAgeFemale5YearsTest.php @@ -25,6 +25,8 @@ class CensusColumnAgeFemale5YearsTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnAgeFemale5YearsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeFemale5Years * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMale() { @@ -50,6 +54,8 @@ class CensusColumnAgeFemale5YearsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeFemale5Years * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testFemale() { @@ -68,6 +74,8 @@ class CensusColumnAgeFemale5YearsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeFemale5Years * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testUnknownSex() { @@ -86,6 +94,8 @@ class CensusColumnAgeFemale5YearsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeFemale5Years * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testLessThanOneYear() { @@ -104,6 +114,8 @@ class CensusColumnAgeFemale5YearsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeFemale5Years * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testLessThanFifteenYears() { @@ -122,6 +134,8 @@ class CensusColumnAgeFemale5YearsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeFemale5Years * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testRoundedDownToFiveYears() { diff --git a/tests/app/Census/CensusColumnAgeFemaleTest.php b/tests/app/Census/CensusColumnAgeFemaleTest.php index 25fde5cfe1..55b7d1267f 100644 --- a/tests/app/Census/CensusColumnAgeFemaleTest.php +++ b/tests/app/Census/CensusColumnAgeFemaleTest.php @@ -25,6 +25,8 @@ class CensusColumnAgeFemaleTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnAgeFemaleTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeFemale * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMale() { @@ -50,6 +54,8 @@ class CensusColumnAgeFemaleTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeFemale * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testFemale() { @@ -68,6 +74,8 @@ class CensusColumnAgeFemaleTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeFemale * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testUnknownSex() { @@ -86,6 +94,8 @@ class CensusColumnAgeFemaleTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeFemale * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testLessThanOneYear() { diff --git a/tests/app/Census/CensusColumnAgeMale5YearsTest.php b/tests/app/Census/CensusColumnAgeMale5YearsTest.php index 5d08eb21b6..242e98a513 100644 --- a/tests/app/Census/CensusColumnAgeMale5YearsTest.php +++ b/tests/app/Census/CensusColumnAgeMale5YearsTest.php @@ -25,6 +25,8 @@ class CensusColumnAgeMale5YearsTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnAgeMale5YearsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeMale5Years * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMale() { @@ -52,6 +56,8 @@ class CensusColumnAgeMale5YearsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeMale5Years * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testFemale() { @@ -68,6 +74,8 @@ class CensusColumnAgeMale5YearsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeMale5Years * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testUnknownSex() { @@ -86,6 +94,8 @@ class CensusColumnAgeMale5YearsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeMale5Years * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testLessThanOneYear() { @@ -104,6 +114,8 @@ class CensusColumnAgeMale5YearsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeMale5Years * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testLessThanFifteenYears() { @@ -122,6 +134,8 @@ class CensusColumnAgeMale5YearsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeMale5Years * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testRoundedDownToFiveYears() { diff --git a/tests/app/Census/CensusColumnAgeMaleTest.php b/tests/app/Census/CensusColumnAgeMaleTest.php index 4b43cf2f2a..353dcc22af 100644 --- a/tests/app/Census/CensusColumnAgeMaleTest.php +++ b/tests/app/Census/CensusColumnAgeMaleTest.php @@ -25,6 +25,8 @@ class CensusColumnAgeMaleTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnAgeMaleTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeMale * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMale() { @@ -52,6 +56,8 @@ class CensusColumnAgeMaleTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeMale * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testFemale() { @@ -68,6 +74,8 @@ class CensusColumnAgeMaleTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeMale * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testUnknownSex() { @@ -86,6 +94,8 @@ class CensusColumnAgeMaleTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeMale * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testLessThanOneYear() { diff --git a/tests/app/Census/CensusColumnAgeMarriedTest.php b/tests/app/Census/CensusColumnAgeMarriedTest.php index 45ad5328bf..7b7c80ddcc 100644 --- a/tests/app/Census/CensusColumnAgeMarriedTest.php +++ b/tests/app/Census/CensusColumnAgeMarriedTest.php @@ -25,6 +25,8 @@ class CensusColumnAgeMarriedTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnAgeMarriedTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeMarried * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testAgeMarried() { @@ -58,6 +62,8 @@ class CensusColumnAgeMarriedTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeMarried * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNoBirthDate() { @@ -76,6 +82,8 @@ class CensusColumnAgeMarriedTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeMarried * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNoMarriage() { @@ -97,6 +105,8 @@ class CensusColumnAgeMarriedTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAgeMarried * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNoSpouseFamily() { diff --git a/tests/app/Census/CensusColumnAgeTest.php b/tests/app/Census/CensusColumnAgeTest.php index 7c2644c19e..93ee200b5e 100644 --- a/tests/app/Census/CensusColumnAgeTest.php +++ b/tests/app/Census/CensusColumnAgeTest.php @@ -25,6 +25,8 @@ class CensusColumnAgeTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnAgeTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnAge * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testGenerateColumn() { diff --git a/tests/app/Census/CensusColumnBirthDateTest.php b/tests/app/Census/CensusColumnBirthDateTest.php index 024bbecc2d..b4888ae641 100644 --- a/tests/app/Census/CensusColumnBirthDateTest.php +++ b/tests/app/Census/CensusColumnBirthDateTest.php @@ -24,6 +24,8 @@ class CensusColumnBirthDateTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnBirthDateTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthDate * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testGenerateColumn() { diff --git a/tests/app/Census/CensusColumnBirthDayDotMonthYearTest.php b/tests/app/Census/CensusColumnBirthDayDotMonthYearTest.php index 4473e80b94..77a4cf85e5 100644 --- a/tests/app/Census/CensusColumnBirthDayDotMonthYearTest.php +++ b/tests/app/Census/CensusColumnBirthDayDotMonthYearTest.php @@ -24,6 +24,8 @@ class CensusColumnBirthDayDotMonthYearTest extends \Fisharebest\Webtrees\TestCas { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnBirthDayDotMonthYearTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthDayDotMonthYearTest * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testGenerateColumn() { diff --git a/tests/app/Census/CensusColumnBirthDayMonthSlashYearTest.php b/tests/app/Census/CensusColumnBirthDayMonthSlashYearTest.php index 65c0eed0b4..71b2bb8d13 100644 --- a/tests/app/Census/CensusColumnBirthDayMonthSlashYearTest.php +++ b/tests/app/Census/CensusColumnBirthDayMonthSlashYearTest.php @@ -24,6 +24,8 @@ class CensusColumnBirthDayMonthSlashYearTest extends \Fisharebest\Webtrees\TestC { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnBirthDayMonthSlashYearTest extends \Fisharebest\Webtrees\TestC /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthDayMonthSlashYearTest * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testGenerateColumn() { diff --git a/tests/app/Census/CensusColumnBirthDaySlashMonthTest.php b/tests/app/Census/CensusColumnBirthDaySlashMonthTest.php index b4c0a0ab95..bb495536dd 100644 --- a/tests/app/Census/CensusColumnBirthDaySlashMonthTest.php +++ b/tests/app/Census/CensusColumnBirthDaySlashMonthTest.php @@ -24,6 +24,8 @@ class CensusColumnBirthDaySlashMonthTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnBirthDaySlashMonthTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthDaySlashMonthTest * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testGenerateColumn() { diff --git a/tests/app/Census/CensusColumnBirthDaySlashMonthYearTest.php b/tests/app/Census/CensusColumnBirthDaySlashMonthYearTest.php index 57c6a593b8..9e5d2042e2 100644 --- a/tests/app/Census/CensusColumnBirthDaySlashMonthYearTest.php +++ b/tests/app/Census/CensusColumnBirthDaySlashMonthYearTest.php @@ -24,6 +24,8 @@ class CensusColumnBirthDaySlashMonthYearTest extends \Fisharebest\Webtrees\TestC { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnBirthDaySlashMonthYearTest extends \Fisharebest\Webtrees\TestC /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthDaySlashMonthYearTest * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testGenerateColumn() { diff --git a/tests/app/Census/CensusColumnBirthDayTest.php b/tests/app/Census/CensusColumnBirthDayTest.php index bc74b459d7..6ab2535827 100644 --- a/tests/app/Census/CensusColumnBirthDayTest.php +++ b/tests/app/Census/CensusColumnBirthDayTest.php @@ -24,6 +24,8 @@ class CensusColumnBirthDayTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnBirthDayTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthDay * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testGenerateColumn() { diff --git a/tests/app/Census/CensusColumnBirthMonthTest.php b/tests/app/Census/CensusColumnBirthMonthTest.php index 8e5790a803..ba8ea0148e 100644 --- a/tests/app/Census/CensusColumnBirthMonthTest.php +++ b/tests/app/Census/CensusColumnBirthMonthTest.php @@ -24,6 +24,8 @@ class CensusColumnBirthMonthTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnBirthMonthTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthMonth * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testGenerateColumn() { diff --git a/tests/app/Census/CensusColumnBirthPlaceSimpleTest.php b/tests/app/Census/CensusColumnBirthPlaceSimpleTest.php index e910280e13..442c1bd33e 100644 --- a/tests/app/Census/CensusColumnBirthPlaceSimpleTest.php +++ b/tests/app/Census/CensusColumnBirthPlaceSimpleTest.php @@ -15,6 +15,7 @@ */ namespace Fisharebest\Webtrees\Census; +use Fisharebest\Webtrees\Place; use Mockery; /** @@ -24,6 +25,8 @@ class CensusColumnBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -35,9 +38,9 @@ class CensusColumnBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestCase * * @param string $place Gedcom Place * - * @return \Fisharebest\Webtrees\Place + * @return Place */ - private function getPlaceMock($place): \Fisharebest\Webtrees\Place + private function getPlaceMock($place): Place { $placeMock = Mockery::mock('\Fisharebest\Webtrees\Place'); $placeMock->shouldReceive('getGedcomName')->andReturn($place); @@ -48,6 +51,8 @@ class CensusColumnBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthPlaceSimple * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testForeignCountry() { @@ -65,6 +70,8 @@ class CensusColumnBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthPlaceSimple * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testJustCountry() { @@ -82,6 +89,8 @@ class CensusColumnBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthPlaceSimple * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testKnownState() { @@ -99,6 +108,8 @@ class CensusColumnBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthPlaceSimple * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testKnownStateAndTown() { diff --git a/tests/app/Census/CensusColumnBirthPlaceTest.php b/tests/app/Census/CensusColumnBirthPlaceTest.php index 2dd1536f52..d9df936d53 100644 --- a/tests/app/Census/CensusColumnBirthPlaceTest.php +++ b/tests/app/Census/CensusColumnBirthPlaceTest.php @@ -15,6 +15,7 @@ */ namespace Fisharebest\Webtrees\Census; +use Fisharebest\Webtrees\Place; use Mockery; /** @@ -24,6 +25,8 @@ class CensusColumnBirthPlaceTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -35,9 +38,9 @@ class CensusColumnBirthPlaceTest extends \Fisharebest\Webtrees\TestCase * * @param string $place Gedcom Place * - * @return \Fisharebest\Webtrees\Place + * @return Place */ - private function getPlaceMock($place): \Fisharebest\Webtrees\Place + private function getPlaceMock($place): Place { $placeMock = Mockery::mock('\Fisharebest\Webtrees\Place'); $placeMock->shouldReceive('getGedcomName')->andReturn($place); @@ -48,6 +51,8 @@ class CensusColumnBirthPlaceTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthPlace * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testPlaceCountry() { @@ -65,6 +70,8 @@ class CensusColumnBirthPlaceTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthPlace * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testPlaceAndCountry() { @@ -82,6 +89,8 @@ class CensusColumnBirthPlaceTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthPlace * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testDifferentCountry() { diff --git a/tests/app/Census/CensusColumnBirthYearTest.php b/tests/app/Census/CensusColumnBirthYearTest.php index e477483c65..49f49c5944 100644 --- a/tests/app/Census/CensusColumnBirthYearTest.php +++ b/tests/app/Census/CensusColumnBirthYearTest.php @@ -24,6 +24,8 @@ class CensusColumnBirthYearTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnBirthYearTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthYear * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testGenerateColumn() { diff --git a/tests/app/Census/CensusColumnBornForeignPartsTest.php b/tests/app/Census/CensusColumnBornForeignPartsTest.php index 2ee5c9703c..a2087adab0 100644 --- a/tests/app/Census/CensusColumnBornForeignPartsTest.php +++ b/tests/app/Census/CensusColumnBornForeignPartsTest.php @@ -15,6 +15,7 @@ */ namespace Fisharebest\Webtrees\Census; +use Fisharebest\Webtrees\Place; use Mockery; /** @@ -24,6 +25,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -35,9 +38,9 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase * * @param string $place Gedcom Place * - * @return \Fisharebest\Webtrees\Place + * @return Place */ - private function getPlaceMock($place): \Fisharebest\Webtrees\Place + private function getPlaceMock($place): Place { $placeParts = explode(', ', $place); @@ -51,6 +54,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornEnglandCensusEngland() { @@ -68,6 +73,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornWalesCensusEngland() { @@ -85,6 +92,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornScotlandCensusEngland() { @@ -102,6 +111,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornIrelandCensusEngland() { @@ -119,6 +130,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornForeignCensusEngland() { @@ -136,6 +149,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornEnglandCensusIreland() { @@ -153,6 +168,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornWalesCensusIreland() { @@ -170,6 +187,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornScotlandCensusIreland() { @@ -187,6 +206,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornIrelandCensusIreland() { @@ -204,6 +225,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornForeignCensusIreland() { @@ -221,6 +244,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornEnglandCensusScotland() { @@ -238,6 +263,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornWalesCensusScotland() { @@ -255,6 +282,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornScotlandCensusScotland() { @@ -272,6 +301,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornIrelandCensusScotland() { @@ -289,6 +320,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornForeignCensusScotland() { @@ -306,6 +339,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornEnglandCensusWales() { @@ -323,6 +358,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornWalesCensusWales() { @@ -340,6 +377,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornScotlandCensusWales() { @@ -357,6 +396,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornIrelandCensusWales() { @@ -374,6 +415,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornForeignCensusWales() { @@ -391,6 +434,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornNowhereCensusEngland() { @@ -408,6 +453,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornNowhereCensusWales() { @@ -425,6 +472,8 @@ class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnBornForeignParts * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornNowhereCensusScotland() { diff --git a/tests/app/Census/CensusColumnChildrenBornAliveTest.php b/tests/app/Census/CensusColumnChildrenBornAliveTest.php index 43eb67559c..5bb11f72fe 100644 --- a/tests/app/Census/CensusColumnChildrenBornAliveTest.php +++ b/tests/app/Census/CensusColumnChildrenBornAliveTest.php @@ -25,6 +25,8 @@ class CensusColumnChildrenBornAliveTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnChildrenBornAliveTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnChildrenBornAlive * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMale() { @@ -50,6 +54,8 @@ class CensusColumnChildrenBornAliveTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnChildrenBornAlive * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testCountChildren() { diff --git a/tests/app/Census/CensusColumnChildrenDiedTest.php b/tests/app/Census/CensusColumnChildrenDiedTest.php index 5f97b4c6be..3c43ae67a6 100644 --- a/tests/app/Census/CensusColumnChildrenDiedTest.php +++ b/tests/app/Census/CensusColumnChildrenDiedTest.php @@ -25,6 +25,8 @@ class CensusColumnChildrenDiedTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnChildrenDiedTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnChildrenDied * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMale() { @@ -50,6 +54,8 @@ class CensusColumnChildrenDiedTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnChildrenDied * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testCountChildren() { diff --git a/tests/app/Census/CensusColumnChildrenLivingTest.php b/tests/app/Census/CensusColumnChildrenLivingTest.php index 614128de1f..1160226746 100644 --- a/tests/app/Census/CensusColumnChildrenLivingTest.php +++ b/tests/app/Census/CensusColumnChildrenLivingTest.php @@ -25,6 +25,8 @@ class CensusColumnChildrenLivingTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnChildrenLivingTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnChildrenLiving * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMale() { @@ -50,6 +54,8 @@ class CensusColumnChildrenLivingTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnChildrenLiving * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testCountChildren() { diff --git a/tests/app/Census/CensusColumnConditionDanishTest.php b/tests/app/Census/CensusColumnConditionDanishTest.php index 279b54b905..d39fb7aa40 100644 --- a/tests/app/Census/CensusColumnConditionDanishTest.php +++ b/tests/app/Census/CensusColumnConditionDanishTest.php @@ -25,6 +25,8 @@ class CensusColumnConditionDanishTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnConditionDanishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionDanish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesMale() { @@ -53,6 +57,8 @@ class CensusColumnConditionDanishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionDanish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesFemale() { @@ -72,6 +78,8 @@ class CensusColumnConditionDanishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionDanish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsMale() { @@ -95,6 +103,8 @@ class CensusColumnConditionDanishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionDanish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsFemale() { @@ -118,6 +128,8 @@ class CensusColumnConditionDanishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionDanish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadMale() { @@ -147,6 +159,8 @@ class CensusColumnConditionDanishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionDanish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadFemale() { @@ -176,6 +190,8 @@ class CensusColumnConditionDanishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionDanish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedMale() { @@ -199,6 +215,8 @@ class CensusColumnConditionDanishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionDanish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedFemale() { @@ -222,6 +240,8 @@ class CensusColumnConditionDanishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionDanish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildMale() { @@ -245,6 +265,8 @@ class CensusColumnConditionDanishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionDanish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildFemale() { @@ -268,6 +290,8 @@ class CensusColumnConditionDanishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionDanish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedMale() { @@ -293,6 +317,8 @@ class CensusColumnConditionDanishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionDanish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedFemale() { diff --git a/tests/app/Census/CensusColumnConditionEnglishTest.php b/tests/app/Census/CensusColumnConditionEnglishTest.php index 8cf432a00c..2809bdd054 100644 --- a/tests/app/Census/CensusColumnConditionEnglishTest.php +++ b/tests/app/Census/CensusColumnConditionEnglishTest.php @@ -25,6 +25,8 @@ class CensusColumnConditionEnglishTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnConditionEnglishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionEnglish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesMale() { @@ -53,6 +57,8 @@ class CensusColumnConditionEnglishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionEnglish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesFemale() { @@ -72,6 +78,8 @@ class CensusColumnConditionEnglishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionEnglish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsMale() { @@ -95,6 +103,8 @@ class CensusColumnConditionEnglishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionEnglish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsFemale() { @@ -118,6 +128,8 @@ class CensusColumnConditionEnglishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionEnglish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadMale() { @@ -147,6 +159,8 @@ class CensusColumnConditionEnglishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionEnglish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadFemale() { @@ -176,6 +190,8 @@ class CensusColumnConditionEnglishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionEnglish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedMale() { @@ -199,6 +215,8 @@ class CensusColumnConditionEnglishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionEnglish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedFemale() { @@ -222,6 +240,8 @@ class CensusColumnConditionEnglishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionEnglish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildMale() { @@ -245,6 +265,8 @@ class CensusColumnConditionEnglishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionEnglish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildFemale() { @@ -268,6 +290,8 @@ class CensusColumnConditionEnglishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionEnglish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedMale() { @@ -293,6 +317,8 @@ class CensusColumnConditionEnglishTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionEnglish * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedFemale() { diff --git a/tests/app/Census/CensusColumnConditionFrenchFemmeTest.php b/tests/app/Census/CensusColumnConditionFrenchFemmeTest.php index bdecf01d83..f1b1a78513 100644 --- a/tests/app/Census/CensusColumnConditionFrenchFemmeTest.php +++ b/tests/app/Census/CensusColumnConditionFrenchFemmeTest.php @@ -25,6 +25,8 @@ class CensusColumnConditionFrenchFemmeTest extends \Fisharebest\Webtrees\TestCas { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnConditionFrenchFemmeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFemme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesMale() { @@ -53,6 +57,8 @@ class CensusColumnConditionFrenchFemmeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFemme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesFemale() { @@ -72,6 +78,8 @@ class CensusColumnConditionFrenchFemmeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFemme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsMale() { @@ -95,6 +103,8 @@ class CensusColumnConditionFrenchFemmeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFemme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsFemale() { @@ -118,6 +128,8 @@ class CensusColumnConditionFrenchFemmeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFemme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadMale() { @@ -147,6 +159,8 @@ class CensusColumnConditionFrenchFemmeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFemme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadFemale() { @@ -176,6 +190,8 @@ class CensusColumnConditionFrenchFemmeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFemme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedMale() { @@ -199,6 +215,8 @@ class CensusColumnConditionFrenchFemmeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFemme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedFemale() { @@ -222,6 +240,8 @@ class CensusColumnConditionFrenchFemmeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFemme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildMale() { @@ -245,6 +265,8 @@ class CensusColumnConditionFrenchFemmeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFemme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildFemale() { @@ -268,6 +290,8 @@ class CensusColumnConditionFrenchFemmeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFemme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedMale() { @@ -293,6 +317,8 @@ class CensusColumnConditionFrenchFemmeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFemme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedFemale() { diff --git a/tests/app/Census/CensusColumnConditionFrenchFilleTest.php b/tests/app/Census/CensusColumnConditionFrenchFilleTest.php index aa4cfbca96..18b42e8660 100644 --- a/tests/app/Census/CensusColumnConditionFrenchFilleTest.php +++ b/tests/app/Census/CensusColumnConditionFrenchFilleTest.php @@ -25,6 +25,8 @@ class CensusColumnConditionFrenchFilleTest extends \Fisharebest\Webtrees\TestCas { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnConditionFrenchFilleTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFille * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesMale() { @@ -53,6 +57,8 @@ class CensusColumnConditionFrenchFilleTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFille * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesFemale() { @@ -72,6 +78,8 @@ class CensusColumnConditionFrenchFilleTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFille * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsMale() { @@ -95,6 +103,8 @@ class CensusColumnConditionFrenchFilleTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFille * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsFemale() { @@ -118,6 +128,8 @@ class CensusColumnConditionFrenchFilleTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFille * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadMale() { @@ -147,6 +159,8 @@ class CensusColumnConditionFrenchFilleTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFille * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadFemale() { @@ -176,6 +190,8 @@ class CensusColumnConditionFrenchFilleTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFille * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedMale() { @@ -199,6 +215,8 @@ class CensusColumnConditionFrenchFilleTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFille * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedFemale() { @@ -222,6 +240,8 @@ class CensusColumnConditionFrenchFilleTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFille * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildMale() { @@ -245,6 +265,8 @@ class CensusColumnConditionFrenchFilleTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFille * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildFemale() { @@ -268,6 +290,8 @@ class CensusColumnConditionFrenchFilleTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFille * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedMale() { @@ -293,6 +317,8 @@ class CensusColumnConditionFrenchFilleTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFille * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedFemale() { diff --git a/tests/app/Census/CensusColumnConditionFrenchGarconTest.php b/tests/app/Census/CensusColumnConditionFrenchGarconTest.php index 47271c44f1..7f6b412789 100644 --- a/tests/app/Census/CensusColumnConditionFrenchGarconTest.php +++ b/tests/app/Census/CensusColumnConditionFrenchGarconTest.php @@ -25,6 +25,8 @@ class CensusColumnConditionFrenchGarconTest extends \Fisharebest\Webtrees\TestCa { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnConditionFrenchGarconTest extends \Fisharebest\Webtrees\TestCa /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchGarcon * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesMale() { @@ -53,6 +57,8 @@ class CensusColumnConditionFrenchGarconTest extends \Fisharebest\Webtrees\TestCa /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchGarcon * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesFemale() { @@ -72,6 +78,8 @@ class CensusColumnConditionFrenchGarconTest extends \Fisharebest\Webtrees\TestCa /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchGarcon * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsMale() { @@ -95,6 +103,8 @@ class CensusColumnConditionFrenchGarconTest extends \Fisharebest\Webtrees\TestCa /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchGarcon * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsFemale() { @@ -118,6 +128,8 @@ class CensusColumnConditionFrenchGarconTest extends \Fisharebest\Webtrees\TestCa /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchGarcon * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadMale() { @@ -147,6 +159,8 @@ class CensusColumnConditionFrenchGarconTest extends \Fisharebest\Webtrees\TestCa /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchGarcon * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadFemale() { @@ -176,6 +190,8 @@ class CensusColumnConditionFrenchGarconTest extends \Fisharebest\Webtrees\TestCa /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchGarcon * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedMale() { @@ -199,6 +215,8 @@ class CensusColumnConditionFrenchGarconTest extends \Fisharebest\Webtrees\TestCa /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchGarcon * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedFemale() { @@ -222,6 +240,8 @@ class CensusColumnConditionFrenchGarconTest extends \Fisharebest\Webtrees\TestCa /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchGarcon * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildMale() { @@ -245,6 +265,8 @@ class CensusColumnConditionFrenchGarconTest extends \Fisharebest\Webtrees\TestCa /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchGarcon * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildFemale() { @@ -268,6 +290,8 @@ class CensusColumnConditionFrenchGarconTest extends \Fisharebest\Webtrees\TestCa /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchGarcon * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedMale() { @@ -293,6 +317,8 @@ class CensusColumnConditionFrenchGarconTest extends \Fisharebest\Webtrees\TestCa /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchGarcon * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedFemale() { diff --git a/tests/app/Census/CensusColumnConditionFrenchHommeTest.php b/tests/app/Census/CensusColumnConditionFrenchHommeTest.php index 0155adfc2f..638a2b6775 100644 --- a/tests/app/Census/CensusColumnConditionFrenchHommeTest.php +++ b/tests/app/Census/CensusColumnConditionFrenchHommeTest.php @@ -25,6 +25,8 @@ class CensusColumnConditionFrenchHommeTest extends \Fisharebest\Webtrees\TestCas { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnConditionFrenchHommeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchHomme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesMale() { @@ -53,6 +57,8 @@ class CensusColumnConditionFrenchHommeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchHomme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesFemale() { @@ -72,6 +78,8 @@ class CensusColumnConditionFrenchHommeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchHomme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsMale() { @@ -95,6 +103,8 @@ class CensusColumnConditionFrenchHommeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchHomme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsFemale() { @@ -118,6 +128,8 @@ class CensusColumnConditionFrenchHommeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchHomme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadMale() { @@ -147,6 +159,8 @@ class CensusColumnConditionFrenchHommeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchHomme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadFemale() { @@ -176,6 +190,8 @@ class CensusColumnConditionFrenchHommeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchHomme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedMale() { @@ -199,6 +215,8 @@ class CensusColumnConditionFrenchHommeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchHomme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedFemale() { @@ -222,6 +240,8 @@ class CensusColumnConditionFrenchHommeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchHomme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildMale() { @@ -245,6 +265,8 @@ class CensusColumnConditionFrenchHommeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchHomme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildFemale() { @@ -268,6 +290,8 @@ class CensusColumnConditionFrenchHommeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchHomme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedMale() { @@ -293,6 +317,8 @@ class CensusColumnConditionFrenchHommeTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchHomme * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedFemale() { diff --git a/tests/app/Census/CensusColumnConditionFrenchVeufTest.php b/tests/app/Census/CensusColumnConditionFrenchVeufTest.php index f3772771e7..e6d0640998 100644 --- a/tests/app/Census/CensusColumnConditionFrenchVeufTest.php +++ b/tests/app/Census/CensusColumnConditionFrenchVeufTest.php @@ -25,6 +25,8 @@ class CensusColumnConditionFrenchVeufTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnConditionFrenchVeufTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuf * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesMale() { @@ -53,6 +57,8 @@ class CensusColumnConditionFrenchVeufTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuf * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesFemale() { @@ -72,6 +78,8 @@ class CensusColumnConditionFrenchVeufTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuf * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsMale() { @@ -95,6 +103,8 @@ class CensusColumnConditionFrenchVeufTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuf * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsFemale() { @@ -118,6 +128,8 @@ class CensusColumnConditionFrenchVeufTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuf * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadMale() { @@ -147,6 +159,8 @@ class CensusColumnConditionFrenchVeufTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuf * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadFemale() { @@ -176,6 +190,8 @@ class CensusColumnConditionFrenchVeufTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuf * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedMale() { @@ -199,6 +215,8 @@ class CensusColumnConditionFrenchVeufTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuf * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedFemale() { @@ -222,6 +240,8 @@ class CensusColumnConditionFrenchVeufTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuf * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildMale() { @@ -245,6 +265,8 @@ class CensusColumnConditionFrenchVeufTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuf * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildFemale() { @@ -268,6 +290,8 @@ class CensusColumnConditionFrenchVeufTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuf * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedMale() { @@ -293,6 +317,8 @@ class CensusColumnConditionFrenchVeufTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuf * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedFemale() { diff --git a/tests/app/Census/CensusColumnConditionFrenchVeuveTest.php b/tests/app/Census/CensusColumnConditionFrenchVeuveTest.php index 2e012199f8..2571653150 100644 --- a/tests/app/Census/CensusColumnConditionFrenchVeuveTest.php +++ b/tests/app/Census/CensusColumnConditionFrenchVeuveTest.php @@ -25,6 +25,8 @@ class CensusColumnConditionFrenchVeuveTest extends \Fisharebest\Webtrees\TestCas { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnConditionFrenchVeuveTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuve * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesMale() { @@ -53,6 +57,8 @@ class CensusColumnConditionFrenchVeuveTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuve * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesFemale() { @@ -72,6 +78,8 @@ class CensusColumnConditionFrenchVeuveTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuve * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsMale() { @@ -95,6 +103,8 @@ class CensusColumnConditionFrenchVeuveTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuve * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsFemale() { @@ -118,6 +128,8 @@ class CensusColumnConditionFrenchVeuveTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuve * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadMale() { @@ -147,6 +159,8 @@ class CensusColumnConditionFrenchVeuveTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuve * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadFemale() { @@ -176,6 +190,8 @@ class CensusColumnConditionFrenchVeuveTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuve * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedMale() { @@ -199,6 +215,8 @@ class CensusColumnConditionFrenchVeuveTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuve * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedFemale() { @@ -222,6 +240,8 @@ class CensusColumnConditionFrenchVeuveTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuve * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildMale() { @@ -245,6 +265,8 @@ class CensusColumnConditionFrenchVeuveTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuve * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildFemale() { @@ -268,6 +290,8 @@ class CensusColumnConditionFrenchVeuveTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuve * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedMale() { @@ -293,6 +317,8 @@ class CensusColumnConditionFrenchVeuveTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuve * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedFemale() { diff --git a/tests/app/Census/CensusColumnConditionUsTest.php b/tests/app/Census/CensusColumnConditionUsTest.php index b78846b629..2dc6a04ffe 100644 --- a/tests/app/Census/CensusColumnConditionUsTest.php +++ b/tests/app/Census/CensusColumnConditionUsTest.php @@ -25,6 +25,8 @@ class CensusColumnConditionUsTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnConditionUsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionUs * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesMale() { @@ -53,6 +57,8 @@ class CensusColumnConditionUsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionUs * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoSpouseFamiliesFemale() { @@ -72,6 +78,8 @@ class CensusColumnConditionUsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionUs * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsMale() { @@ -95,6 +103,8 @@ class CensusColumnConditionUsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionUs * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyFactsFemale() { @@ -118,6 +128,8 @@ class CensusColumnConditionUsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionUs * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadMale() { @@ -147,6 +159,8 @@ class CensusColumnConditionUsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionUs * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testSpouseDeadFemale() { @@ -176,6 +190,8 @@ class CensusColumnConditionUsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionUs * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedMale() { @@ -199,6 +215,8 @@ class CensusColumnConditionUsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionUs * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testNoFamilyUnmarriedFemale() { @@ -222,6 +240,8 @@ class CensusColumnConditionUsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionUs * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildMale() { @@ -245,6 +265,8 @@ class CensusColumnConditionUsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionUs * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testChildFemale() { @@ -268,6 +290,8 @@ class CensusColumnConditionUsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionUs * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedMale() { @@ -293,6 +317,8 @@ class CensusColumnConditionUsTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnConditionUs * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumnCondition + * + * @return void */ public function testDivorcedFemale() { diff --git a/tests/app/Census/CensusColumnFatherBirthPlaceSimpleTest.php b/tests/app/Census/CensusColumnFatherBirthPlaceSimpleTest.php index da72fff665..a8cd518408 100644 --- a/tests/app/Census/CensusColumnFatherBirthPlaceSimpleTest.php +++ b/tests/app/Census/CensusColumnFatherBirthPlaceSimpleTest.php @@ -15,6 +15,7 @@ */ namespace Fisharebest\Webtrees\Census; +use Fisharebest\Webtrees\Place; use Mockery; /** @@ -24,6 +25,8 @@ class CensusColumnFatherBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestC { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -35,9 +38,9 @@ class CensusColumnFatherBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestC * * @param string $place Gedcom Place * - * @return \Fisharebest\Webtrees\Place + * @return Place */ - private function getPlaceMock($place): \Fisharebest\Webtrees\Place + private function getPlaceMock($place): Place { $placeParts = explode(', ', $place); @@ -51,6 +54,8 @@ class CensusColumnFatherBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestC /** * @covers \Fisharebest\Webtrees\Census\CensusColumnFatherBirthPlaceSimple * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testKnownStateAndTown() { diff --git a/tests/app/Census/CensusColumnFatherBirthPlaceTest.php b/tests/app/Census/CensusColumnFatherBirthPlaceTest.php index 9e6c8e7b3a..90b0a60da3 100644 --- a/tests/app/Census/CensusColumnFatherBirthPlaceTest.php +++ b/tests/app/Census/CensusColumnFatherBirthPlaceTest.php @@ -15,6 +15,7 @@ */ namespace Fisharebest\Webtrees\Census; +use Fisharebest\Webtrees\Place; use Mockery; /** @@ -24,6 +25,8 @@ class CensusColumnFatherBirthPlaceTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -35,9 +38,9 @@ class CensusColumnFatherBirthPlaceTest extends \Fisharebest\Webtrees\TestCase * * @param string $place Gedcom Place * - * @return \Fisharebest\Webtrees\Place + * @return Place */ - private function getPlaceMock($place): \Fisharebest\Webtrees\Place + private function getPlaceMock($place): Place { $placeParts = explode(', ', $place); @@ -51,6 +54,8 @@ class CensusColumnFatherBirthPlaceTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnFatherBirthPlace * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testSameCountry() { @@ -74,6 +79,8 @@ class CensusColumnFatherBirthPlaceTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnFatherBirthPlace * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testDifferentCountry() { @@ -97,6 +104,8 @@ class CensusColumnFatherBirthPlaceTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnFatherBirthPlace * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testPlaceNoParent() { @@ -117,6 +126,8 @@ class CensusColumnFatherBirthPlaceTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnFatherBirthPlace * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testPlaceNoParentFamily() { diff --git a/tests/app/Census/CensusColumnFatherForeignTest.php b/tests/app/Census/CensusColumnFatherForeignTest.php index 262b0b59d5..401c9f6c12 100644 --- a/tests/app/Census/CensusColumnFatherForeignTest.php +++ b/tests/app/Census/CensusColumnFatherForeignTest.php @@ -15,6 +15,7 @@ */ namespace Fisharebest\Webtrees\Census; +use Fisharebest\Webtrees\Place; use Mockery; /** @@ -24,6 +25,8 @@ class CensusColumnFatherForeignTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -35,9 +38,9 @@ class CensusColumnFatherForeignTest extends \Fisharebest\Webtrees\TestCase * * @param string $place Gedcom Place * - * @return \Fisharebest\Webtrees\Place + * @return Place */ - private function getPlaceMock($place): \Fisharebest\Webtrees\Place + private function getPlaceMock($place): Place { $placeMock = Mockery::mock('\Fisharebest\Webtrees\Place'); $placeMock->shouldReceive('getGedcomName')->andReturn($place); diff --git a/tests/app/Census/CensusColumnFullNameTest.php b/tests/app/Census/CensusColumnFullNameTest.php index df4af9083f..a2bd672d11 100644 --- a/tests/app/Census/CensusColumnFullNameTest.php +++ b/tests/app/Census/CensusColumnFullNameTest.php @@ -24,6 +24,8 @@ class CensusColumnFullNameTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnFullNameTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnFullName * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testFullName() { diff --git a/tests/app/Census/CensusColumnGivenNameInitialTest.php b/tests/app/Census/CensusColumnGivenNameInitialTest.php index a5b9d88788..95f92005aa 100644 --- a/tests/app/Census/CensusColumnGivenNameInitialTest.php +++ b/tests/app/Census/CensusColumnGivenNameInitialTest.php @@ -24,6 +24,8 @@ class CensusColumnGivenNameInitialTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnGivenNameInitialTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnGivenNameInitial * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testOneGivenName() { @@ -49,6 +53,8 @@ class CensusColumnGivenNameInitialTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnGivenNameInitial * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMultipleGivenNames() { @@ -65,6 +71,8 @@ class CensusColumnGivenNameInitialTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnGivenNameInitial * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNoName() { diff --git a/tests/app/Census/CensusColumnGivenNamesTest.php b/tests/app/Census/CensusColumnGivenNamesTest.php index 288cdcce05..11ec47ce40 100644 --- a/tests/app/Census/CensusColumnGivenNamesTest.php +++ b/tests/app/Census/CensusColumnGivenNamesTest.php @@ -24,6 +24,8 @@ class CensusColumnGivenNamesTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnGivenNamesTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnGivenNames * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testGivenNames() { @@ -49,6 +53,8 @@ class CensusColumnGivenNamesTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnGivenNames * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNoName() { diff --git a/tests/app/Census/CensusColumnMarriedWithinYearTest.php b/tests/app/Census/CensusColumnMarriedWithinYearTest.php index 4660c9627b..4d9e123ca8 100644 --- a/tests/app/Census/CensusColumnMarriedWithinYearTest.php +++ b/tests/app/Census/CensusColumnMarriedWithinYearTest.php @@ -25,6 +25,8 @@ class CensusColumnMarriedWithinYearTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnMarriedWithinYearTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMarriedWithinYear * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMarriedWithinYear() { @@ -57,6 +61,8 @@ class CensusColumnMarriedWithinYearTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMarriedWithinYear * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMarriedOverYearBeforeTheCensus() { @@ -80,6 +86,8 @@ class CensusColumnMarriedWithinYearTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMarriedWithinYear * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMarriedAfterTheCensus() { @@ -103,6 +111,8 @@ class CensusColumnMarriedWithinYearTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMarriedWithinYear * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNoMarriage() { @@ -123,6 +133,8 @@ class CensusColumnMarriedWithinYearTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMarriedWithinYear * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNoSpouseFamily() { diff --git a/tests/app/Census/CensusColumnMonthIfBornWithinYearTest.php b/tests/app/Census/CensusColumnMonthIfBornWithinYearTest.php index b2c7e23cd8..9557e12739 100644 --- a/tests/app/Census/CensusColumnMonthIfBornWithinYearTest.php +++ b/tests/app/Census/CensusColumnMonthIfBornWithinYearTest.php @@ -25,6 +25,8 @@ class CensusColumnMonthIfBornWithinYearTest extends \Fisharebest\Webtrees\TestCa { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnMonthIfBornWithinYearTest extends \Fisharebest\Webtrees\TestCa /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMonthIfBornWithinYear * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornWithinYear() { @@ -51,6 +55,8 @@ class CensusColumnMonthIfBornWithinYearTest extends \Fisharebest\Webtrees\TestCa /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMonthIfBornWithinYear * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornOverYearBeforeTheCensus() { @@ -68,6 +74,8 @@ class CensusColumnMonthIfBornWithinYearTest extends \Fisharebest\Webtrees\TestCa /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMonthIfBornWithinYear * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBornAfterTheCensus() { @@ -87,6 +95,8 @@ class CensusColumnMonthIfBornWithinYearTest extends \Fisharebest\Webtrees\TestCa /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMonthIfBornWithinYear * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNoBirth() { diff --git a/tests/app/Census/CensusColumnMonthIfMarriedWithinYearTest.php b/tests/app/Census/CensusColumnMonthIfMarriedWithinYearTest.php index f3c160761f..f657ee3f43 100644 --- a/tests/app/Census/CensusColumnMonthIfMarriedWithinYearTest.php +++ b/tests/app/Census/CensusColumnMonthIfMarriedWithinYearTest.php @@ -25,6 +25,8 @@ class CensusColumnMonthIfMarriedWithinYearTest extends \Fisharebest\Webtrees\Tes { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -34,6 +36,8 @@ class CensusColumnMonthIfMarriedWithinYearTest extends \Fisharebest\Webtrees\Tes /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMonthIfMarriedWithinYear * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMarriedWithinYear() { @@ -57,6 +61,8 @@ class CensusColumnMonthIfMarriedWithinYearTest extends \Fisharebest\Webtrees\Tes /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMonthIfMarriedWithinYear * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMarriedOverYearBeforeTheCensus() { @@ -80,6 +86,8 @@ class CensusColumnMonthIfMarriedWithinYearTest extends \Fisharebest\Webtrees\Tes /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMonthIfMarriedWithinYear * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMarriedAfterTheCensus() { @@ -103,6 +111,8 @@ class CensusColumnMonthIfMarriedWithinYearTest extends \Fisharebest\Webtrees\Tes /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMonthIfMarriedWithinYear * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNoMarriage() { @@ -123,6 +133,8 @@ class CensusColumnMonthIfMarriedWithinYearTest extends \Fisharebest\Webtrees\Tes /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMonthIfMarriedWithinYear * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNoSpouseFamily() { diff --git a/tests/app/Census/CensusColumnMotherBirthPlaceSimpleTest.php b/tests/app/Census/CensusColumnMotherBirthPlaceSimpleTest.php index ca0d4d719a..2812e74d8e 100644 --- a/tests/app/Census/CensusColumnMotherBirthPlaceSimpleTest.php +++ b/tests/app/Census/CensusColumnMotherBirthPlaceSimpleTest.php @@ -15,6 +15,7 @@ */ namespace Fisharebest\Webtrees\Census; +use Fisharebest\Webtrees\Place; use Mockery; /** @@ -24,6 +25,8 @@ class CensusColumnMotherBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestC { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -35,9 +38,9 @@ class CensusColumnMotherBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestC * * @param string $place Gedcom Place * - * @return \Fisharebest\Webtrees\Place + * @return Place */ - private function getPlaceMock($place): \Fisharebest\Webtrees\Place + private function getPlaceMock($place): Place { $placeParts = explode(', ', $place); @@ -51,6 +54,8 @@ class CensusColumnMotherBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestC /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMotherBirthPlaceSimple * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testKnownStateAndTown() { diff --git a/tests/app/Census/CensusColumnMotherBirthPlaceTest.php b/tests/app/Census/CensusColumnMotherBirthPlaceTest.php index 97a1f1b52e..2056529adc 100644 --- a/tests/app/Census/CensusColumnMotherBirthPlaceTest.php +++ b/tests/app/Census/CensusColumnMotherBirthPlaceTest.php @@ -15,6 +15,7 @@ */ namespace Fisharebest\Webtrees\Census; +use Fisharebest\Webtrees\Place; use Mockery; /** @@ -24,6 +25,8 @@ class CensusColumnMotherBirthPlaceTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -35,9 +38,9 @@ class CensusColumnMotherBirthPlaceTest extends \Fisharebest\Webtrees\TestCase * * @param string $place Gedcom Place * - * @return \Fisharebest\Webtrees\Place + * @return Place */ - private function getPlaceMock($place): \Fisharebest\Webtrees\Place + private function getPlaceMock($place): Place { $placeParts = explode(', ', $place); @@ -51,6 +54,8 @@ class CensusColumnMotherBirthPlaceTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMotherBirthPlace * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testSameCountry() { @@ -74,6 +79,8 @@ class CensusColumnMotherBirthPlaceTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMotherBirthPlace * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testDifferentCountry() { @@ -97,6 +104,8 @@ class CensusColumnMotherBirthPlaceTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMotherBirthPlace * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testPlaceNoParent() { @@ -117,6 +126,8 @@ class CensusColumnMotherBirthPlaceTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMotherBirthPlace * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testPlaceNoParentFamily() { diff --git a/tests/app/Census/CensusColumnMotherForeignTest.php b/tests/app/Census/CensusColumnMotherForeignTest.php index 04cdb83151..9135be2ea8 100644 --- a/tests/app/Census/CensusColumnMotherForeignTest.php +++ b/tests/app/Census/CensusColumnMotherForeignTest.php @@ -15,6 +15,7 @@ */ namespace Fisharebest\Webtrees\Census; +use Fisharebest\Webtrees\Place; use Mockery; /** @@ -24,6 +25,8 @@ class CensusColumnMotherForeignTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -35,9 +38,9 @@ class CensusColumnMotherForeignTest extends \Fisharebest\Webtrees\TestCase * * @param string $place Gedcom Place * - * @return \Fisharebest\Webtrees\Place + * @return Place */ - private function getPlaceMock($place): \Fisharebest\Webtrees\Place + private function getPlaceMock($place): Place { $placeMock = Mockery::mock('\Fisharebest\Webtrees\Place'); $placeMock->shouldReceive('getGedcomName')->andReturn($place); @@ -48,6 +51,8 @@ class CensusColumnMotherForeignTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMotherForeign * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testSameCountry() { @@ -71,6 +76,8 @@ class CensusColumnMotherForeignTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMotherForeign * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testDifferentCountry() { @@ -94,6 +101,8 @@ class CensusColumnMotherForeignTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMotherForeign * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testPlaceNoParent() { @@ -114,6 +123,8 @@ class CensusColumnMotherForeignTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnMotherForeign * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testPlaceNoParentFamily() { diff --git a/tests/app/Census/CensusColumnNationalityTest.php b/tests/app/Census/CensusColumnNationalityTest.php index 91b121a44b..edbdc524f2 100644 --- a/tests/app/Census/CensusColumnNationalityTest.php +++ b/tests/app/Census/CensusColumnNationalityTest.php @@ -16,6 +16,7 @@ namespace Fisharebest\Webtrees\Census; use Fisharebest\Webtrees\Date; +use Fisharebest\Webtrees\Place; use Mockery; /** @@ -25,6 +26,8 @@ class CensusColumnNationalityTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -36,9 +39,9 @@ class CensusColumnNationalityTest extends \Fisharebest\Webtrees\TestCase * * @param string $place Gedcom Place * - * @return \Fisharebest\Webtrees\Place + * @return Place */ - private function getPlaceMock($place): \Fisharebest\Webtrees\Place + private function getPlaceMock($place): Place { $placeMock = Mockery::mock('\Fisharebest\Webtrees\Place'); $placeMock->shouldReceive('getGedcomName')->andReturn($place); @@ -49,6 +52,8 @@ class CensusColumnNationalityTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnNationality * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNoBirthPlace() { @@ -67,6 +72,8 @@ class CensusColumnNationalityTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnNationality * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testPlaceCountry() { @@ -85,6 +92,8 @@ class CensusColumnNationalityTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnNationality * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testBritish() { @@ -103,6 +112,8 @@ class CensusColumnNationalityTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnNationality * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testEmigrated() { diff --git a/tests/app/Census/CensusColumnNullTest.php b/tests/app/Census/CensusColumnNullTest.php index 9b3dd801d9..9d9d1b51bd 100644 --- a/tests/app/Census/CensusColumnNullTest.php +++ b/tests/app/Census/CensusColumnNullTest.php @@ -24,6 +24,8 @@ class CensusColumnNullTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnNullTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnNull * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNull() { diff --git a/tests/app/Census/CensusColumnOccupationTest.php b/tests/app/Census/CensusColumnOccupationTest.php index 82aea7f9de..c1221ccaf8 100644 --- a/tests/app/Census/CensusColumnOccupationTest.php +++ b/tests/app/Census/CensusColumnOccupationTest.php @@ -24,6 +24,8 @@ class CensusColumnOccupationTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnOccupationTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnOccupation * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNoOccupation() { @@ -49,6 +53,8 @@ class CensusColumnOccupationTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnOccupation * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testOccupation() { diff --git a/tests/app/Census/CensusColumnRelationToHeadGermanTest.php b/tests/app/Census/CensusColumnRelationToHeadGermanTest.php index 9634fe8f53..32f6501cb4 100644 --- a/tests/app/Census/CensusColumnRelationToHeadGermanTest.php +++ b/tests/app/Census/CensusColumnRelationToHeadGermanTest.php @@ -24,6 +24,8 @@ class CensusColumnRelationToHeadGermanTest extends \Fisharebest\Webtrees\TestCas { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnRelationToHeadGermanTest extends \Fisharebest\Webtrees\TestCas /** * @covers \Fisharebest\Webtrees\Census\CensusColumnRelationToHeadGerman * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNull() { diff --git a/tests/app/Census/CensusColumnRelationToHeadTest.php b/tests/app/Census/CensusColumnRelationToHeadTest.php index 34c0dc3de9..7c6c092b8f 100644 --- a/tests/app/Census/CensusColumnRelationToHeadTest.php +++ b/tests/app/Census/CensusColumnRelationToHeadTest.php @@ -24,6 +24,8 @@ class CensusColumnRelationToHeadTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnRelationToHeadTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnRelationToHead * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNull() { diff --git a/tests/app/Census/CensusColumnReligionTest.php b/tests/app/Census/CensusColumnReligionTest.php index ec9f5791f0..8e54f7de35 100644 --- a/tests/app/Census/CensusColumnReligionTest.php +++ b/tests/app/Census/CensusColumnReligionTest.php @@ -24,6 +24,8 @@ class CensusColumnReligionTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnReligionTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnReligion * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testReligion() { diff --git a/tests/app/Census/CensusColumnSexMFTest.php b/tests/app/Census/CensusColumnSexMFTest.php index cc248f920b..701dfcd61b 100644 --- a/tests/app/Census/CensusColumnSexMFTest.php +++ b/tests/app/Census/CensusColumnSexMFTest.php @@ -24,6 +24,8 @@ class CensusColumnSexMFTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnSexMFTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnSexMF * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMale() { @@ -49,6 +53,8 @@ class CensusColumnSexMFTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnSexMF * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testFeale() { @@ -65,6 +71,8 @@ class CensusColumnSexMFTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnSexMF * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testUnknownSex() { diff --git a/tests/app/Census/CensusColumnSexMKTest.php b/tests/app/Census/CensusColumnSexMKTest.php index ee7c2bda4a..21aeb5795e 100644 --- a/tests/app/Census/CensusColumnSexMKTest.php +++ b/tests/app/Census/CensusColumnSexMKTest.php @@ -24,6 +24,8 @@ class CensusColumnSexMKTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnSexMKTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnSexMK * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMale() { @@ -49,6 +53,8 @@ class CensusColumnSexMKTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnSexMK * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testFeale() { @@ -65,6 +71,8 @@ class CensusColumnSexMKTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnSexMK * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testUnknownSex() { diff --git a/tests/app/Census/CensusColumnSexMZTest.php b/tests/app/Census/CensusColumnSexMZTest.php index 9af80185d1..74b430d01f 100644 --- a/tests/app/Census/CensusColumnSexMZTest.php +++ b/tests/app/Census/CensusColumnSexMZTest.php @@ -24,6 +24,8 @@ class CensusColumnSexMZTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnSexMZTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnSexMZ * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMale() { @@ -49,6 +53,8 @@ class CensusColumnSexMZTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnSexMZ * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testFeale() { @@ -65,6 +71,8 @@ class CensusColumnSexMZTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnSexMZ * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testUnknownSex() { diff --git a/tests/app/Census/CensusColumnSurnameGivenNameInitialTest.php b/tests/app/Census/CensusColumnSurnameGivenNameInitialTest.php index 8f5dc9940b..62b1051a01 100644 --- a/tests/app/Census/CensusColumnSurnameGivenNameInitialTest.php +++ b/tests/app/Census/CensusColumnSurnameGivenNameInitialTest.php @@ -24,6 +24,8 @@ class CensusColumnSurnameGivenNameInitialTest extends \Fisharebest\Webtrees\Test { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnSurnameGivenNameInitialTest extends \Fisharebest\Webtrees\Test /** * @covers \Fisharebest\Webtrees\Census\CensusColumnSurnameGivenNameInitial * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testOneGivenName() { @@ -56,6 +60,8 @@ class CensusColumnSurnameGivenNameInitialTest extends \Fisharebest\Webtrees\Test /** * @covers \Fisharebest\Webtrees\Census\CensusColumnSurnameGivenNameInitial * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMultipleGivenNames() { diff --git a/tests/app/Census/CensusColumnSurnameGivenNamesTest.php b/tests/app/Census/CensusColumnSurnameGivenNamesTest.php index 688a5c250b..6a845c288f 100644 --- a/tests/app/Census/CensusColumnSurnameGivenNamesTest.php +++ b/tests/app/Census/CensusColumnSurnameGivenNamesTest.php @@ -24,6 +24,8 @@ class CensusColumnSurnameGivenNamesTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnSurnameGivenNamesTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnSurnameGivenNames * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testOneGivenName() { @@ -56,6 +60,8 @@ class CensusColumnSurnameGivenNamesTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnSurnameGivenNames * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMultipleGivenNames() { @@ -79,6 +85,8 @@ class CensusColumnSurnameGivenNamesTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnSurnameGivenNames * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNoName() { diff --git a/tests/app/Census/CensusColumnSurnameTest.php b/tests/app/Census/CensusColumnSurnameTest.php index c55dcb3442..fd0a53670c 100644 --- a/tests/app/Census/CensusColumnSurnameTest.php +++ b/tests/app/Census/CensusColumnSurnameTest.php @@ -24,6 +24,8 @@ class CensusColumnSurnameTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects + * + * @return void */ public function tearDown() { @@ -33,6 +35,8 @@ class CensusColumnSurnameTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnSurname * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testSurname() { @@ -49,6 +53,8 @@ class CensusColumnSurnameTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnSurname * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNoName() { diff --git a/tests/app/Census/CensusColumnYearsMarriedTest.php b/tests/app/Census/CensusColumnYearsMarriedTest.php index 81772ec7a5..72e64abd77 100644 --- a/tests/app/Census/CensusColumnYearsMarriedTest.php +++ b/tests/app/Census/CensusColumnYearsMarriedTest.php @@ -34,6 +34,8 @@ class CensusColumnYearsMarriedTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnYearsMarried * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNoSpouseFamily() { @@ -51,6 +53,8 @@ class CensusColumnYearsMarriedTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnYearsMarried * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testNoMarriage() { @@ -71,6 +75,8 @@ class CensusColumnYearsMarriedTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnYearsMarried * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testUndatedMarriage() { @@ -94,6 +100,8 @@ class CensusColumnYearsMarriedTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnYearsMarried * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMarriageAfterCensus() { @@ -117,6 +125,8 @@ class CensusColumnYearsMarriedTest extends \Fisharebest\Webtrees\TestCase /** * @covers \Fisharebest\Webtrees\Census\CensusColumnYearsMarried * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testMarriageBeforeCensus() { diff --git a/tests/app/Census/CensusOfCzechRepublic1880Test.php b/tests/app/Census/CensusOfCzechRepublic1880Test.php index 900affe728..f91f430e89 100644 --- a/tests/app/Census/CensusOfCzechRepublic1880Test.php +++ b/tests/app/Census/CensusOfCzechRepublic1880Test.php @@ -24,6 +24,8 @@ class CensusOfCzechRepublic1880Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic1880 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfCzechRepublic1880Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic1880 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfCzechRepublic1890Test.php b/tests/app/Census/CensusOfCzechRepublic1890Test.php index 1077ff5668..eda0297a24 100644 --- a/tests/app/Census/CensusOfCzechRepublic1890Test.php +++ b/tests/app/Census/CensusOfCzechRepublic1890Test.php @@ -24,6 +24,8 @@ class CensusOfCzechRepublic1890Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic1890 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfCzechRepublic1890Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic1890 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfCzechRepublic1900Test.php b/tests/app/Census/CensusOfCzechRepublic1900Test.php index ce2b4ca9a9..4d65d4b72e 100644 --- a/tests/app/Census/CensusOfCzechRepublic1900Test.php +++ b/tests/app/Census/CensusOfCzechRepublic1900Test.php @@ -24,6 +24,8 @@ class CensusOfCzechRepublic1900Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic1900 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfCzechRepublic1900Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic1900 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfCzechRepublic1910Test.php b/tests/app/Census/CensusOfCzechRepublic1910Test.php index ea97cdfea2..bec0359abe 100644 --- a/tests/app/Census/CensusOfCzechRepublic1910Test.php +++ b/tests/app/Census/CensusOfCzechRepublic1910Test.php @@ -24,6 +24,8 @@ class CensusOfCzechRepublic1910Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic1910 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfCzechRepublic1910Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic1910 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfCzechRepublic1921Test.php b/tests/app/Census/CensusOfCzechRepublic1921Test.php index 5b81caa314..65a5440234 100644 --- a/tests/app/Census/CensusOfCzechRepublic1921Test.php +++ b/tests/app/Census/CensusOfCzechRepublic1921Test.php @@ -24,6 +24,8 @@ class CensusOfCzechRepublic1921Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic1921 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfCzechRepublic1921Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic1921 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfCzechRepublicTest.php b/tests/app/Census/CensusOfCzechRepublicTest.php index 5f8f7f0ef9..9949394a79 100644 --- a/tests/app/Census/CensusOfCzechRepublicTest.php +++ b/tests/app/Census/CensusOfCzechRepublicTest.php @@ -24,6 +24,8 @@ class CensusOfCzechRepublicTest extends \Fisharebest\Webtrees\TestCase * Test the census place * * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic + * + * @return void */ public function testPlace() { @@ -36,6 +38,8 @@ class CensusOfCzechRepublicTest extends \Fisharebest\Webtrees\TestCase * Test the census dates * * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic + * + * @return void */ public function testAllDates() { diff --git a/tests/app/Census/CensusOfDenmark1787Test.php b/tests/app/Census/CensusOfDenmark1787Test.php index 8f306d3b75..345ae371f3 100644 --- a/tests/app/Census/CensusOfDenmark1787Test.php +++ b/tests/app/Census/CensusOfDenmark1787Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1787Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1787 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1787Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1787 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1801Test.php b/tests/app/Census/CensusOfDenmark1801Test.php index db504b6e45..396fd8413d 100644 --- a/tests/app/Census/CensusOfDenmark1801Test.php +++ b/tests/app/Census/CensusOfDenmark1801Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1801Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1801 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1801Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1801 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1803Test.php b/tests/app/Census/CensusOfDenmark1803Test.php index 7d58d81fd3..49e7231d44 100644 --- a/tests/app/Census/CensusOfDenmark1803Test.php +++ b/tests/app/Census/CensusOfDenmark1803Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1803Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1803 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1803Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1803 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1834Test.php b/tests/app/Census/CensusOfDenmark1834Test.php index f312f94a41..0d49bd844f 100644 --- a/tests/app/Census/CensusOfDenmark1834Test.php +++ b/tests/app/Census/CensusOfDenmark1834Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1834Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1834 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1834Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1834 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1835Test.php b/tests/app/Census/CensusOfDenmark1835Test.php index 62a4f93872..a91d03bd79 100644 --- a/tests/app/Census/CensusOfDenmark1835Test.php +++ b/tests/app/Census/CensusOfDenmark1835Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1835Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1835 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1835Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1835 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1840Test.php b/tests/app/Census/CensusOfDenmark1840Test.php index 76bfa29120..71b3ad8bb5 100644 --- a/tests/app/Census/CensusOfDenmark1840Test.php +++ b/tests/app/Census/CensusOfDenmark1840Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1840Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1840 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1840Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1840 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1845Test.php b/tests/app/Census/CensusOfDenmark1845Test.php index a97fcac68c..21ce871ac8 100644 --- a/tests/app/Census/CensusOfDenmark1845Test.php +++ b/tests/app/Census/CensusOfDenmark1845Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1845Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1845 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1845Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1845 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1850Test.php b/tests/app/Census/CensusOfDenmark1850Test.php index c7e1c5005d..0884db297a 100644 --- a/tests/app/Census/CensusOfDenmark1850Test.php +++ b/tests/app/Census/CensusOfDenmark1850Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1850Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1850 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1850Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1850 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1855Test.php b/tests/app/Census/CensusOfDenmark1855Test.php index 4965e0120b..acb496cdab 100644 --- a/tests/app/Census/CensusOfDenmark1855Test.php +++ b/tests/app/Census/CensusOfDenmark1855Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1855Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1855 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1855Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1855 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1860Test.php b/tests/app/Census/CensusOfDenmark1860Test.php index 1e61e72dcd..b9b0a5f601 100644 --- a/tests/app/Census/CensusOfDenmark1860Test.php +++ b/tests/app/Census/CensusOfDenmark1860Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1860Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1860 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1860Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1860 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1870Test.php b/tests/app/Census/CensusOfDenmark1870Test.php index 5f49f035f7..3d8e145635 100644 --- a/tests/app/Census/CensusOfDenmark1870Test.php +++ b/tests/app/Census/CensusOfDenmark1870Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1870Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1870 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1870Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1870 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1880Test.php b/tests/app/Census/CensusOfDenmark1880Test.php index c784d92e20..827a54d4ea 100644 --- a/tests/app/Census/CensusOfDenmark1880Test.php +++ b/tests/app/Census/CensusOfDenmark1880Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1880Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1880 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1880Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1880 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1885Test.php b/tests/app/Census/CensusOfDenmark1885Test.php index 1f05fe35a3..20754a5ccc 100644 --- a/tests/app/Census/CensusOfDenmark1885Test.php +++ b/tests/app/Census/CensusOfDenmark1885Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1885Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1885 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1885Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1885 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1890Test.php b/tests/app/Census/CensusOfDenmark1890Test.php index 4e302f5c95..8b7bd21943 100644 --- a/tests/app/Census/CensusOfDenmark1890Test.php +++ b/tests/app/Census/CensusOfDenmark1890Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1890Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1890 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1890Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1890 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1901Test.php b/tests/app/Census/CensusOfDenmark1901Test.php index 5d29a42a82..80b8f82585 100644 --- a/tests/app/Census/CensusOfDenmark1901Test.php +++ b/tests/app/Census/CensusOfDenmark1901Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1901Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1901 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1901Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1901 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1906Test.php b/tests/app/Census/CensusOfDenmark1906Test.php index 101023637b..acb44929a4 100644 --- a/tests/app/Census/CensusOfDenmark1906Test.php +++ b/tests/app/Census/CensusOfDenmark1906Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1906Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1906 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1906Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1906 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1911Test.php b/tests/app/Census/CensusOfDenmark1911Test.php index 5e545ed6d1..0fd2aa9a9e 100644 --- a/tests/app/Census/CensusOfDenmark1911Test.php +++ b/tests/app/Census/CensusOfDenmark1911Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1911Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1911 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1911Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1911 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1916Test.php b/tests/app/Census/CensusOfDenmark1916Test.php index 6afddb4288..49bbbdc1aa 100644 --- a/tests/app/Census/CensusOfDenmark1916Test.php +++ b/tests/app/Census/CensusOfDenmark1916Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1916Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1916 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1916Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1916 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1921Test.php b/tests/app/Census/CensusOfDenmark1921Test.php index e8e88a48a8..461bd8bc51 100644 --- a/tests/app/Census/CensusOfDenmark1921Test.php +++ b/tests/app/Census/CensusOfDenmark1921Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1921Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1921 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1921Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1921 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1925Test.php b/tests/app/Census/CensusOfDenmark1925Test.php index 39002571cb..1139669bd4 100644 --- a/tests/app/Census/CensusOfDenmark1925Test.php +++ b/tests/app/Census/CensusOfDenmark1925Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1925Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1925 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1925Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1925 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1930Test.php b/tests/app/Census/CensusOfDenmark1930Test.php index e5500bb9cc..5809a944b7 100644 --- a/tests/app/Census/CensusOfDenmark1930Test.php +++ b/tests/app/Census/CensusOfDenmark1930Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1930Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1930 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1930Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1930 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmark1940Test.php b/tests/app/Census/CensusOfDenmark1940Test.php index 31814b8577..50228ea8c6 100644 --- a/tests/app/Census/CensusOfDenmark1940Test.php +++ b/tests/app/Census/CensusOfDenmark1940Test.php @@ -24,6 +24,8 @@ class CensusOfDenmark1940Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1940 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDenmark1940Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1940 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDenmarkTest.php b/tests/app/Census/CensusOfDenmarkTest.php index 769547aa1a..6b0c3016d1 100644 --- a/tests/app/Census/CensusOfDenmarkTest.php +++ b/tests/app/Census/CensusOfDenmarkTest.php @@ -24,6 +24,8 @@ class CensusOfDenmarkTest extends \Fisharebest\Webtrees\TestCase * Test the census place * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark + * + * @return void */ public function testPlace() { @@ -36,6 +38,8 @@ class CensusOfDenmarkTest extends \Fisharebest\Webtrees\TestCase * Test the census dates * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark + * + * @return void */ public function testAllDates() { diff --git a/tests/app/Census/CensusOfDeutschland1819Test.php b/tests/app/Census/CensusOfDeutschland1819Test.php index 62e2383967..81205ec9d6 100644 --- a/tests/app/Census/CensusOfDeutschland1819Test.php +++ b/tests/app/Census/CensusOfDeutschland1819Test.php @@ -24,6 +24,8 @@ class CensusOfDeutschland1819Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland1819 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDeutschland1819Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland1819 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDeutschland1867Test.php b/tests/app/Census/CensusOfDeutschland1867Test.php index 9216ddb5c0..c50ca1bb31 100644 --- a/tests/app/Census/CensusOfDeutschland1867Test.php +++ b/tests/app/Census/CensusOfDeutschland1867Test.php @@ -24,6 +24,8 @@ class CensusOfDeutschland1867Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland1867 + * + * @return void */ public function testPlaceAndDate() { @@ -38,7 +40,9 @@ class CensusOfDeutschland1867Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland1867 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn - */ + * + * @return void + */ public function testColumns() { $census = new CensusOfDeutschland1867; diff --git a/tests/app/Census/CensusOfDeutschland1900Test.php b/tests/app/Census/CensusOfDeutschland1900Test.php index 77e70ec668..580b94e3db 100644 --- a/tests/app/Census/CensusOfDeutschland1900Test.php +++ b/tests/app/Census/CensusOfDeutschland1900Test.php @@ -24,6 +24,8 @@ class CensusOfDeutschland1900Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland1900 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDeutschland1900Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland1900 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDeutschland1919Test.php b/tests/app/Census/CensusOfDeutschland1919Test.php index 503bb1a010..967006f8c4 100644 --- a/tests/app/Census/CensusOfDeutschland1919Test.php +++ b/tests/app/Census/CensusOfDeutschland1919Test.php @@ -24,6 +24,8 @@ class CensusOfDeutschland1919Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland1919 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDeutschland1919Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland1919 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDeutschlandNL1867Test.php b/tests/app/Census/CensusOfDeutschlandNL1867Test.php index 438eb8e06b..bf538dfbee 100644 --- a/tests/app/Census/CensusOfDeutschlandNL1867Test.php +++ b/tests/app/Census/CensusOfDeutschlandNL1867Test.php @@ -24,6 +24,8 @@ class CensusOfDeutschlandNL1867Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschlandNL1867 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfDeutschlandNL1867Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschlandNL1867 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfDeutschlandTest.php b/tests/app/Census/CensusOfDeutschlandTest.php index 7c934bd15d..65cd006993 100644 --- a/tests/app/Census/CensusOfDeutschlandTest.php +++ b/tests/app/Census/CensusOfDeutschlandTest.php @@ -24,6 +24,8 @@ class CensusOfDeutschlandTest extends \Fisharebest\Webtrees\TestCase * Test the census place * * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland + * + * @return void */ public function testPlace() { @@ -36,6 +38,8 @@ class CensusOfDeutschlandTest extends \Fisharebest\Webtrees\TestCase * Test the census dates * * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland + * + * @return void */ public function testAllDates() { diff --git a/tests/app/Census/CensusOfEngland1841Test.php b/tests/app/Census/CensusOfEngland1841Test.php index 5ee4ebf80c..89774d44b2 100644 --- a/tests/app/Census/CensusOfEngland1841Test.php +++ b/tests/app/Census/CensusOfEngland1841Test.php @@ -24,6 +24,8 @@ class CensusOfEngland1841Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1841 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfEngland1841Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1841 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfEngland1851Test.php b/tests/app/Census/CensusOfEngland1851Test.php index 12505ec056..aacdf7072f 100644 --- a/tests/app/Census/CensusOfEngland1851Test.php +++ b/tests/app/Census/CensusOfEngland1851Test.php @@ -24,6 +24,8 @@ class CensusOfEngland1851Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1851 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfEngland1851Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1851 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfEngland1861Test.php b/tests/app/Census/CensusOfEngland1861Test.php index 990b27ccbc..bd8f1ac3b5 100644 --- a/tests/app/Census/CensusOfEngland1861Test.php +++ b/tests/app/Census/CensusOfEngland1861Test.php @@ -24,6 +24,8 @@ class CensusOfEngland1861Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1861 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfEngland1861Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1861 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfEngland1871Test.php b/tests/app/Census/CensusOfEngland1871Test.php index 2f47ad3309..c3c24f43b7 100644 --- a/tests/app/Census/CensusOfEngland1871Test.php +++ b/tests/app/Census/CensusOfEngland1871Test.php @@ -24,6 +24,8 @@ class CensusOfEngland1871Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1871 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfEngland1871Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1871 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfEngland1881Test.php b/tests/app/Census/CensusOfEngland1881Test.php index 4ec5033bbf..8bbd5bc25c 100644 --- a/tests/app/Census/CensusOfEngland1881Test.php +++ b/tests/app/Census/CensusOfEngland1881Test.php @@ -24,6 +24,8 @@ class CensusOfEngland1881Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1881 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfEngland1881Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1881 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfEngland1891Test.php b/tests/app/Census/CensusOfEngland1891Test.php index 5f33fbbc10..95c2e7496e 100644 --- a/tests/app/Census/CensusOfEngland1891Test.php +++ b/tests/app/Census/CensusOfEngland1891Test.php @@ -24,6 +24,8 @@ class CensusOfEngland1891Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1891 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfEngland1891Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1891 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfEngland1901Test.php b/tests/app/Census/CensusOfEngland1901Test.php index dbc3fbbada..1377eb22f3 100644 --- a/tests/app/Census/CensusOfEngland1901Test.php +++ b/tests/app/Census/CensusOfEngland1901Test.php @@ -24,6 +24,8 @@ class CensusOfEngland1901Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1901 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfEngland1901Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1901 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfEngland1911Test.php b/tests/app/Census/CensusOfEngland1911Test.php index da0b79a165..7d02e9cd50 100644 --- a/tests/app/Census/CensusOfEngland1911Test.php +++ b/tests/app/Census/CensusOfEngland1911Test.php @@ -24,6 +24,8 @@ class CensusOfEngland1911Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1911 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfEngland1911Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1911 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfEnglandTest.php b/tests/app/Census/CensusOfEnglandTest.php index b72b9de537..5cb9f2dea1 100644 --- a/tests/app/Census/CensusOfEnglandTest.php +++ b/tests/app/Census/CensusOfEnglandTest.php @@ -24,6 +24,8 @@ class CensusOfEnglandTest extends \Fisharebest\Webtrees\TestCase * Test the census place * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland + * + * @return void */ public function testPlace() { @@ -36,6 +38,8 @@ class CensusOfEnglandTest extends \Fisharebest\Webtrees\TestCase * Test the census dates * * @covers \Fisharebest\Webtrees\Census\CensusOfEngland + * + * @return void */ public function testAllDates() { diff --git a/tests/app/Census/CensusOfFrance1831Test.php b/tests/app/Census/CensusOfFrance1831Test.php index 851c81a5f7..789fbca82c 100644 --- a/tests/app/Census/CensusOfFrance1831Test.php +++ b/tests/app/Census/CensusOfFrance1831Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1831Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1831 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1831Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1831 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1836Test.php b/tests/app/Census/CensusOfFrance1836Test.php index 6a243c0d7f..77eef34f68 100644 --- a/tests/app/Census/CensusOfFrance1836Test.php +++ b/tests/app/Census/CensusOfFrance1836Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1836Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1836 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1836Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1836 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1841Test.php b/tests/app/Census/CensusOfFrance1841Test.php index b44e8e9cc0..6ffcb75879 100644 --- a/tests/app/Census/CensusOfFrance1841Test.php +++ b/tests/app/Census/CensusOfFrance1841Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1841Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1841 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1841Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1841 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1846Test.php b/tests/app/Census/CensusOfFrance1846Test.php index 2dd3df19f3..3dafb50f19 100644 --- a/tests/app/Census/CensusOfFrance1846Test.php +++ b/tests/app/Census/CensusOfFrance1846Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1846Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1846 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1846Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1846 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1851Test.php b/tests/app/Census/CensusOfFrance1851Test.php index a4f81cbd92..3161033129 100644 --- a/tests/app/Census/CensusOfFrance1851Test.php +++ b/tests/app/Census/CensusOfFrance1851Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1851Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1851 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1851Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1851 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1856Test.php b/tests/app/Census/CensusOfFrance1856Test.php index 1b14f3c1a2..f0b0580f1e 100644 --- a/tests/app/Census/CensusOfFrance1856Test.php +++ b/tests/app/Census/CensusOfFrance1856Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1856Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1856 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1856Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1856 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1861Test.php b/tests/app/Census/CensusOfFrance1861Test.php index 7ecbf9e378..7ef9cd7c8c 100644 --- a/tests/app/Census/CensusOfFrance1861Test.php +++ b/tests/app/Census/CensusOfFrance1861Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1861Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1861 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1861Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1861 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1866Test.php b/tests/app/Census/CensusOfFrance1866Test.php index 342b840a71..e1ae3428e8 100644 --- a/tests/app/Census/CensusOfFrance1866Test.php +++ b/tests/app/Census/CensusOfFrance1866Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1866Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1866 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1866Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1866 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1872Test.php b/tests/app/Census/CensusOfFrance1872Test.php index 33c17240d9..175e00992a 100644 --- a/tests/app/Census/CensusOfFrance1872Test.php +++ b/tests/app/Census/CensusOfFrance1872Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1872Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1872 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1872Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1872 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1876Test.php b/tests/app/Census/CensusOfFrance1876Test.php index f3fed85ef1..7d38a4d1ea 100644 --- a/tests/app/Census/CensusOfFrance1876Test.php +++ b/tests/app/Census/CensusOfFrance1876Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1876Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1876 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1876Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1876 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1881Test.php b/tests/app/Census/CensusOfFrance1881Test.php index 76f2b729b1..32d08ca7ad 100644 --- a/tests/app/Census/CensusOfFrance1881Test.php +++ b/tests/app/Census/CensusOfFrance1881Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1881Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1881 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1881Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1881 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1886Test.php b/tests/app/Census/CensusOfFrance1886Test.php index 6e35d197b0..4ed934738f 100644 --- a/tests/app/Census/CensusOfFrance1886Test.php +++ b/tests/app/Census/CensusOfFrance1886Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1886Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1886 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1886Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1886 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1891Test.php b/tests/app/Census/CensusOfFrance1891Test.php index 0a9de1875a..dec52f6c4f 100644 --- a/tests/app/Census/CensusOfFrance1891Test.php +++ b/tests/app/Census/CensusOfFrance1891Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1891Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1891 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1891Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1891 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1896Test.php b/tests/app/Census/CensusOfFrance1896Test.php index d2b5683c44..da89117dde 100644 --- a/tests/app/Census/CensusOfFrance1896Test.php +++ b/tests/app/Census/CensusOfFrance1896Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1896Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1896 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1896Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1896 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1901Test.php b/tests/app/Census/CensusOfFrance1901Test.php index e60483d76e..b41af3f861 100644 --- a/tests/app/Census/CensusOfFrance1901Test.php +++ b/tests/app/Census/CensusOfFrance1901Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1901Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1901 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1901Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1901 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1906Test.php b/tests/app/Census/CensusOfFrance1906Test.php index 14a341be3d..d02c85156e 100644 --- a/tests/app/Census/CensusOfFrance1906Test.php +++ b/tests/app/Census/CensusOfFrance1906Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1906Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1906 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1906Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1906 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1911Test.php b/tests/app/Census/CensusOfFrance1911Test.php index f3a63d5440..b77ef0d74b 100644 --- a/tests/app/Census/CensusOfFrance1911Test.php +++ b/tests/app/Census/CensusOfFrance1911Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1911Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1911 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1911Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1911 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1921Test.php b/tests/app/Census/CensusOfFrance1921Test.php index ca9c455dff..116694a84e 100644 --- a/tests/app/Census/CensusOfFrance1921Test.php +++ b/tests/app/Census/CensusOfFrance1921Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1921Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1921 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1921Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1921 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1926Test.php b/tests/app/Census/CensusOfFrance1926Test.php index dcc6355547..8936535168 100644 --- a/tests/app/Census/CensusOfFrance1926Test.php +++ b/tests/app/Census/CensusOfFrance1926Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1926Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1926 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1926Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1926 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1931Test.php b/tests/app/Census/CensusOfFrance1931Test.php index 0b7554f841..ff95c6c83d 100644 --- a/tests/app/Census/CensusOfFrance1931Test.php +++ b/tests/app/Census/CensusOfFrance1931Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1931Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1931 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1931Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1931 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1936Test.php b/tests/app/Census/CensusOfFrance1936Test.php index becf82ecf9..9d168680fd 100644 --- a/tests/app/Census/CensusOfFrance1936Test.php +++ b/tests/app/Census/CensusOfFrance1936Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1936Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1936 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1936Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1936 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFrance1946Test.php b/tests/app/Census/CensusOfFrance1946Test.php index 01276a1b91..b748102f46 100644 --- a/tests/app/Census/CensusOfFrance1946Test.php +++ b/tests/app/Census/CensusOfFrance1946Test.php @@ -24,6 +24,8 @@ class CensusOfFrance1946Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1946 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfFrance1946Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1946 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfFranceTest.php b/tests/app/Census/CensusOfFranceTest.php index 43838a976f..eafe7b850a 100644 --- a/tests/app/Census/CensusOfFranceTest.php +++ b/tests/app/Census/CensusOfFranceTest.php @@ -24,6 +24,8 @@ class CensusOfFranceTest extends \Fisharebest\Webtrees\TestCase * Test the census place * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance + * + * @return void */ public function testPlace() { @@ -36,6 +38,8 @@ class CensusOfFranceTest extends \Fisharebest\Webtrees\TestCase * Test the census dates * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance + * + * @return void */ public function testAllDates() { diff --git a/tests/app/Census/CensusOfScotland1841Test.php b/tests/app/Census/CensusOfScotland1841Test.php index 82f9aab456..0e1086a7f9 100644 --- a/tests/app/Census/CensusOfScotland1841Test.php +++ b/tests/app/Census/CensusOfScotland1841Test.php @@ -24,6 +24,8 @@ class CensusOfScotland1841Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1841 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfScotland1841Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1841 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfScotland1851Test.php b/tests/app/Census/CensusOfScotland1851Test.php index 0c1e4e1b23..586799c6b8 100644 --- a/tests/app/Census/CensusOfScotland1851Test.php +++ b/tests/app/Census/CensusOfScotland1851Test.php @@ -24,6 +24,8 @@ class CensusOfScotland1851Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1851 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfScotland1851Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1851 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfScotland1861Test.php b/tests/app/Census/CensusOfScotland1861Test.php index 6218067652..7ea82e5113 100644 --- a/tests/app/Census/CensusOfScotland1861Test.php +++ b/tests/app/Census/CensusOfScotland1861Test.php @@ -24,6 +24,8 @@ class CensusOfScotland1861Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1861 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfScotland1861Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1861 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfScotland1871Test.php b/tests/app/Census/CensusOfScotland1871Test.php index 72be79dbdb..5c9890b28c 100644 --- a/tests/app/Census/CensusOfScotland1871Test.php +++ b/tests/app/Census/CensusOfScotland1871Test.php @@ -24,6 +24,8 @@ class CensusOfScotland1871Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1871 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfScotland1871Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1871 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfScotland1881Test.php b/tests/app/Census/CensusOfScotland1881Test.php index 37abc44e55..14c24e6b05 100644 --- a/tests/app/Census/CensusOfScotland1881Test.php +++ b/tests/app/Census/CensusOfScotland1881Test.php @@ -24,6 +24,8 @@ class CensusOfScotland1881Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1881 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfScotland1881Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1881 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfScotland1891Test.php b/tests/app/Census/CensusOfScotland1891Test.php index 98f689e59c..c4dc1d3952 100644 --- a/tests/app/Census/CensusOfScotland1891Test.php +++ b/tests/app/Census/CensusOfScotland1891Test.php @@ -24,6 +24,8 @@ class CensusOfScotland1891Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1891 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfScotland1891Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1891 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfScotland1901Test.php b/tests/app/Census/CensusOfScotland1901Test.php index 1e2c7b5453..3cc4f6e20f 100644 --- a/tests/app/Census/CensusOfScotland1901Test.php +++ b/tests/app/Census/CensusOfScotland1901Test.php @@ -24,6 +24,8 @@ class CensusOfScotland1901Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1901 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfScotland1901Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1901 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfScotland1911Test.php b/tests/app/Census/CensusOfScotland1911Test.php index 5a3431ae10..fd14a1ef04 100644 --- a/tests/app/Census/CensusOfScotland1911Test.php +++ b/tests/app/Census/CensusOfScotland1911Test.php @@ -24,6 +24,8 @@ class CensusOfScotland1911Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1911 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfScotland1911Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1911 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfScotlandTest.php b/tests/app/Census/CensusOfScotlandTest.php index 659a75ef7d..854b9185f6 100644 --- a/tests/app/Census/CensusOfScotlandTest.php +++ b/tests/app/Census/CensusOfScotlandTest.php @@ -24,6 +24,8 @@ class CensusOfScotlandTest extends \Fisharebest\Webtrees\TestCase * Test the census place * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland + * + * @return void */ public function testPlace() { @@ -36,6 +38,8 @@ class CensusOfScotlandTest extends \Fisharebest\Webtrees\TestCase * Test the census dates * * @covers \Fisharebest\Webtrees\Census\CensusOfScotland + * + * @return void */ public function testAllDates() { diff --git a/tests/app/Census/CensusOfUnitedStates1790Test.php b/tests/app/Census/CensusOfUnitedStates1790Test.php index 4fe7f8e291..3332125766 100644 --- a/tests/app/Census/CensusOfUnitedStates1790Test.php +++ b/tests/app/Census/CensusOfUnitedStates1790Test.php @@ -24,6 +24,8 @@ class CensusOfUnitedStates1790Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1790 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfUnitedStates1790Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1790 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfUnitedStates1800Test.php b/tests/app/Census/CensusOfUnitedStates1800Test.php index 07316f1625..8f5a7331f2 100644 --- a/tests/app/Census/CensusOfUnitedStates1800Test.php +++ b/tests/app/Census/CensusOfUnitedStates1800Test.php @@ -24,6 +24,8 @@ class CensusOfUnitedStates1800Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1800 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfUnitedStates1800Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1800 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfUnitedStates1810Test.php b/tests/app/Census/CensusOfUnitedStates1810Test.php index b5365e188e..cb2199dcb0 100644 --- a/tests/app/Census/CensusOfUnitedStates1810Test.php +++ b/tests/app/Census/CensusOfUnitedStates1810Test.php @@ -24,6 +24,8 @@ class CensusOfUnitedStates1810Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1810 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfUnitedStates1810Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1810 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfUnitedStates1820Test.php b/tests/app/Census/CensusOfUnitedStates1820Test.php index a87e584797..2e9ff71628 100644 --- a/tests/app/Census/CensusOfUnitedStates1820Test.php +++ b/tests/app/Census/CensusOfUnitedStates1820Test.php @@ -24,6 +24,8 @@ class CensusOfUnitedStates1820Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1820 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfUnitedStates1820Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1820 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfUnitedStates1830Test.php b/tests/app/Census/CensusOfUnitedStates1830Test.php index d1618b3a71..c0e6273226 100644 --- a/tests/app/Census/CensusOfUnitedStates1830Test.php +++ b/tests/app/Census/CensusOfUnitedStates1830Test.php @@ -24,6 +24,8 @@ class CensusOfUnitedStates1830Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1830 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfUnitedStates1830Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1830 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfUnitedStates1840Test.php b/tests/app/Census/CensusOfUnitedStates1840Test.php index e793684491..dce2471084 100644 --- a/tests/app/Census/CensusOfUnitedStates1840Test.php +++ b/tests/app/Census/CensusOfUnitedStates1840Test.php @@ -24,6 +24,8 @@ class CensusOfUnitedStates1840Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1840 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfUnitedStates1840Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1840 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfUnitedStates1850Test.php b/tests/app/Census/CensusOfUnitedStates1850Test.php index 3771e97707..776af29785 100644 --- a/tests/app/Census/CensusOfUnitedStates1850Test.php +++ b/tests/app/Census/CensusOfUnitedStates1850Test.php @@ -24,6 +24,8 @@ class CensusOfUnitedStates1850Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1850 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfUnitedStates1850Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1850 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfUnitedStates1860Test.php b/tests/app/Census/CensusOfUnitedStates1860Test.php index 7db8dd6e75..f33e204554 100644 --- a/tests/app/Census/CensusOfUnitedStates1860Test.php +++ b/tests/app/Census/CensusOfUnitedStates1860Test.php @@ -25,6 +25,8 @@ class CensusOfUnitedStates1860Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1860 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfUnitedStates1860Test extends \Fisharebest\Webtrees\TestCase * Test the census columns * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1860 + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfUnitedStates1870Test.php b/tests/app/Census/CensusOfUnitedStates1870Test.php index ca95752663..a1911cb98b 100644 --- a/tests/app/Census/CensusOfUnitedStates1870Test.php +++ b/tests/app/Census/CensusOfUnitedStates1870Test.php @@ -25,6 +25,8 @@ class CensusOfUnitedStates1870Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1870 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfUnitedStates1870Test extends \Fisharebest\Webtrees\TestCase * Test the census columns * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1870 + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfUnitedStates1880Test.php b/tests/app/Census/CensusOfUnitedStates1880Test.php index f43ba06c75..c5452841b7 100644 --- a/tests/app/Census/CensusOfUnitedStates1880Test.php +++ b/tests/app/Census/CensusOfUnitedStates1880Test.php @@ -24,6 +24,8 @@ class CensusOfUnitedStates1880Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1880 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfUnitedStates1880Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1880 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfUnitedStates1890Test.php b/tests/app/Census/CensusOfUnitedStates1890Test.php index c0bb8c781e..76b121e670 100644 --- a/tests/app/Census/CensusOfUnitedStates1890Test.php +++ b/tests/app/Census/CensusOfUnitedStates1890Test.php @@ -24,6 +24,8 @@ class CensusOfUnitedStates1890Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1890 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfUnitedStates1890Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1890 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfUnitedStates1900Test.php b/tests/app/Census/CensusOfUnitedStates1900Test.php index ce7817fb32..0b776b6265 100644 --- a/tests/app/Census/CensusOfUnitedStates1900Test.php +++ b/tests/app/Census/CensusOfUnitedStates1900Test.php @@ -24,6 +24,8 @@ class CensusOfUnitedStates1900Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1900 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfUnitedStates1900Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1900 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfUnitedStates1910Test.php b/tests/app/Census/CensusOfUnitedStates1910Test.php index 425e53b573..afc895adc2 100644 --- a/tests/app/Census/CensusOfUnitedStates1910Test.php +++ b/tests/app/Census/CensusOfUnitedStates1910Test.php @@ -24,6 +24,8 @@ class CensusOfUnitedStates1910Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1910 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfUnitedStates1910Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1910 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfUnitedStates1920Test.php b/tests/app/Census/CensusOfUnitedStates1920Test.php index 8d130c0860..d158af5e63 100644 --- a/tests/app/Census/CensusOfUnitedStates1920Test.php +++ b/tests/app/Census/CensusOfUnitedStates1920Test.php @@ -24,6 +24,8 @@ class CensusOfUnitedStates1920Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1920 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfUnitedStates1920Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1920 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfUnitedStates1930Test.php b/tests/app/Census/CensusOfUnitedStates1930Test.php index 9ac6838717..ce940466d5 100644 --- a/tests/app/Census/CensusOfUnitedStates1930Test.php +++ b/tests/app/Census/CensusOfUnitedStates1930Test.php @@ -24,6 +24,8 @@ class CensusOfUnitedStates1930Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1930 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfUnitedStates1930Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1930 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfUnitedStates1940Test.php b/tests/app/Census/CensusOfUnitedStates1940Test.php index 6288d27030..6399da2343 100644 --- a/tests/app/Census/CensusOfUnitedStates1940Test.php +++ b/tests/app/Census/CensusOfUnitedStates1940Test.php @@ -24,6 +24,8 @@ class CensusOfUnitedStates1940Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1940 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfUnitedStates1940Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1940 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfUnitedStatesTest.php b/tests/app/Census/CensusOfUnitedStatesTest.php index b85ed62d8d..57a0b0c01d 100644 --- a/tests/app/Census/CensusOfUnitedStatesTest.php +++ b/tests/app/Census/CensusOfUnitedStatesTest.php @@ -24,6 +24,8 @@ class CensusOfUnitedStatesTest extends \Fisharebest\Webtrees\TestCase * Test the census place * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates + * + * @return void */ public function testPlace() { @@ -36,6 +38,8 @@ class CensusOfUnitedStatesTest extends \Fisharebest\Webtrees\TestCase * Test the census dates * * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates + * + * @return void */ public function testAllDates() { diff --git a/tests/app/Census/CensusOfWales1841Test.php b/tests/app/Census/CensusOfWales1841Test.php index 89d6f645e8..17ea5028c9 100644 --- a/tests/app/Census/CensusOfWales1841Test.php +++ b/tests/app/Census/CensusOfWales1841Test.php @@ -24,6 +24,8 @@ class CensusOfWales1841Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfWales1841 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfWales1841Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfWales1841 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfWales1851Test.php b/tests/app/Census/CensusOfWales1851Test.php index 8bbac63794..9fe37a6b3a 100644 --- a/tests/app/Census/CensusOfWales1851Test.php +++ b/tests/app/Census/CensusOfWales1851Test.php @@ -24,6 +24,8 @@ class CensusOfWales1851Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfWales1851 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfWales1851Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfWales1851 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfWales1861Test.php b/tests/app/Census/CensusOfWales1861Test.php index f7d1900841..482dc7cdaf 100644 --- a/tests/app/Census/CensusOfWales1861Test.php +++ b/tests/app/Census/CensusOfWales1861Test.php @@ -24,6 +24,8 @@ class CensusOfWales1861Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfWales1861 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfWales1861Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfWales1861 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfWales1871Test.php b/tests/app/Census/CensusOfWales1871Test.php index acab3a11b9..05b7e67621 100644 --- a/tests/app/Census/CensusOfWales1871Test.php +++ b/tests/app/Census/CensusOfWales1871Test.php @@ -24,6 +24,8 @@ class CensusOfWales1871Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfWales1871 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfWales1871Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfWales1871 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfWales1881Test.php b/tests/app/Census/CensusOfWales1881Test.php index b55cfc577d..4accfebae9 100644 --- a/tests/app/Census/CensusOfWales1881Test.php +++ b/tests/app/Census/CensusOfWales1881Test.php @@ -24,6 +24,8 @@ class CensusOfWales1881Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfWales1881 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfWales1881Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfWales1881 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfWales1891Test.php b/tests/app/Census/CensusOfWales1891Test.php index 3ef3b49130..2ccaed3263 100644 --- a/tests/app/Census/CensusOfWales1891Test.php +++ b/tests/app/Census/CensusOfWales1891Test.php @@ -24,6 +24,8 @@ class CensusOfWales1891Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfWales1891 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfWales1891Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfWales1891 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfWales1901Test.php b/tests/app/Census/CensusOfWales1901Test.php index 3496aed610..d13298b323 100644 --- a/tests/app/Census/CensusOfWales1901Test.php +++ b/tests/app/Census/CensusOfWales1901Test.php @@ -24,6 +24,8 @@ class CensusOfWales1901Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfWales1901 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfWales1901Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfWales1901 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfWales1911Test.php b/tests/app/Census/CensusOfWales1911Test.php index ca04a62173..75271bfc6a 100644 --- a/tests/app/Census/CensusOfWales1911Test.php +++ b/tests/app/Census/CensusOfWales1911Test.php @@ -24,6 +24,8 @@ class CensusOfWales1911Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfWales1911 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class CensusOfWales1911Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\CensusOfWales1911 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/CensusOfWalesTest.php b/tests/app/Census/CensusOfWalesTest.php index fec6a3b802..c18c468f81 100644 --- a/tests/app/Census/CensusOfWalesTest.php +++ b/tests/app/Census/CensusOfWalesTest.php @@ -24,6 +24,8 @@ class CensusOfWalesTest extends \Fisharebest\Webtrees\TestCase * Test the census place * * @covers \Fisharebest\Webtrees\Census\CensusOfWales + * + * @return void */ public function testPlace() { @@ -36,6 +38,8 @@ class CensusOfWalesTest extends \Fisharebest\Webtrees\TestCase * Test the census dates * * @covers \Fisharebest\Webtrees\Census\CensusOfWales + * + * @return void */ public function testAllDates() { diff --git a/tests/app/Census/CensusTest.php b/tests/app/Census/CensusTest.php index ace3a5b44d..d8b77b3aa4 100644 --- a/tests/app/Census/CensusTest.php +++ b/tests/app/Census/CensusTest.php @@ -22,6 +22,8 @@ class CensusTest extends \Fisharebest\Webtrees\TestCase { /** * @covers \Fisharebest\Webtrees\Census\Census + * + * @return void */ public function testCensusPlaces() { diff --git a/tests/app/Census/RegisterOfEngland1939Test.php b/tests/app/Census/RegisterOfEngland1939Test.php index f3d9071f81..fe837a8857 100644 --- a/tests/app/Census/RegisterOfEngland1939Test.php +++ b/tests/app/Census/RegisterOfEngland1939Test.php @@ -24,6 +24,8 @@ class RegisterOfEngland1939Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\RegisterOfEngland1939 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class RegisterOfEngland1939Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\RegisterOfEngland1939 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/Census/RegisterOfWales1939Test.php b/tests/app/Census/RegisterOfWales1939Test.php index 031b7d284d..7f1ce7b4ae 100644 --- a/tests/app/Census/RegisterOfWales1939Test.php +++ b/tests/app/Census/RegisterOfWales1939Test.php @@ -24,6 +24,8 @@ class RegisterOfWales1939Test extends \Fisharebest\Webtrees\TestCase * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\RegisterOfWales1939 + * + * @return void */ public function testPlaceAndDate() { @@ -38,6 +40,8 @@ class RegisterOfWales1939Test extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\Census\RegisterOfWales1939 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn + * + * @return void */ public function testColumns() { diff --git a/tests/app/DatabaseTest.php b/tests/app/DatabaseTest.php index 1da3e7da1d..a1ab198704 100644 --- a/tests/app/DatabaseTest.php +++ b/tests/app/DatabaseTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class DatabaseTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Date/FrenchDateTest.php b/tests/app/Date/FrenchDateTest.php index 9c70feacc3..ab40555aaf 100644 --- a/tests/app/Date/FrenchDateTest.php +++ b/tests/app/Date/FrenchDateTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Date; class FrenchDateTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Date/GregorianDateTest.php b/tests/app/Date/GregorianDateTest.php index 4c5c0a91e5..4343382015 100644 --- a/tests/app/Date/GregorianDateTest.php +++ b/tests/app/Date/GregorianDateTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Date; class GregorianDateTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Date/HijriDateTest.php b/tests/app/Date/HijriDateTest.php index 642630dbd0..c7efa79223 100644 --- a/tests/app/Date/HijriDateTest.php +++ b/tests/app/Date/HijriDateTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Date; class HijriDateTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Date/JalaliDateTest.php b/tests/app/Date/JalaliDateTest.php index d72422d952..5ffe33bfe1 100644 --- a/tests/app/Date/JalaliDateTest.php +++ b/tests/app/Date/JalaliDateTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Date; class JalaliDateTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Date/JewishDateTest.php b/tests/app/Date/JewishDateTest.php index 90d9b5cc1c..ac5eac6c9f 100644 --- a/tests/app/Date/JewishDateTest.php +++ b/tests/app/Date/JewishDateTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Date; class JewishDateTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Date/JulianDateTest.php b/tests/app/Date/JulianDateTest.php index ebe70a63ad..5f4d82a1a2 100644 --- a/tests/app/Date/JulianDateTest.php +++ b/tests/app/Date/JulianDateTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Date; class JulianDateTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Date/RomanDateTest.php b/tests/app/Date/RomanDateTest.php index 6e6f7d85ad..09910f7f2c 100644 --- a/tests/app/Date/RomanDateTest.php +++ b/tests/app/Date/RomanDateTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Date; class RomanDateTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/DateTest.php b/tests/app/DateTest.php index 45cb710518..953ebdec61 100644 --- a/tests/app/DateTest.php +++ b/tests/app/DateTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class DateTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/FactTest.php b/tests/app/FactTest.php index fafd01c1c0..8bdd490ad8 100644 --- a/tests/app/FactTest.php +++ b/tests/app/FactTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class FactTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/FamilyTest.php b/tests/app/FamilyTest.php index 2260b9c1a9..3c5cd78ddf 100644 --- a/tests/app/FamilyTest.php +++ b/tests/app/FamilyTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class FamilyTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/FileTest.php b/tests/app/FileTest.php index 83d0a4c86c..8f9161184b 100644 --- a/tests/app/FileTest.php +++ b/tests/app/FileTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class FileTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/FilterTest.php b/tests/app/FilterTest.php index 223da4d97b..d8ba597311 100644 --- a/tests/app/FilterTest.php +++ b/tests/app/FilterTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class FilterTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/FlashMessagesTest.php b/tests/app/FlashMessagesTest.php index 166226e490..775766a635 100644 --- a/tests/app/FlashMessagesTest.php +++ b/tests/app/FlashMessagesTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class FlashMessagesTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Functions/FunctionsChartsTest.php b/tests/app/Functions/FunctionsChartsTest.php index e935a5e3f5..12edebc2b2 100644 --- a/tests/app/Functions/FunctionsChartsTest.php +++ b/tests/app/Functions/FunctionsChartsTest.php @@ -22,6 +22,8 @@ class FunctionsChartsTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Functions/FunctionsDateTest.php b/tests/app/Functions/FunctionsDateTest.php index 899d956c66..e74b78f386 100644 --- a/tests/app/Functions/FunctionsDateTest.php +++ b/tests/app/Functions/FunctionsDateTest.php @@ -22,6 +22,8 @@ class FunctionsDateTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Functions/FunctionsDbTest.php b/tests/app/Functions/FunctionsDbTest.php index 0927fde783..c1cd136616 100644 --- a/tests/app/Functions/FunctionsDbTest.php +++ b/tests/app/Functions/FunctionsDbTest.php @@ -22,6 +22,8 @@ class FunctionsDbTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Functions/FunctionsEditTest.php b/tests/app/Functions/FunctionsEditTest.php index b6a8e3c62c..f974dbeed6 100644 --- a/tests/app/Functions/FunctionsEditTest.php +++ b/tests/app/Functions/FunctionsEditTest.php @@ -22,6 +22,8 @@ class FunctionsEditTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Functions/FunctionsExportTest.php b/tests/app/Functions/FunctionsExportTest.php index bd37e24353..3ad99df5a6 100644 --- a/tests/app/Functions/FunctionsExportTest.php +++ b/tests/app/Functions/FunctionsExportTest.php @@ -22,6 +22,8 @@ class FunctionsExportTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Functions/FunctionsImportTest.php b/tests/app/Functions/FunctionsImportTest.php index 85a6db0275..5e8e53ad03 100644 --- a/tests/app/Functions/FunctionsImportTest.php +++ b/tests/app/Functions/FunctionsImportTest.php @@ -22,6 +22,8 @@ class FunctionsImportTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Functions/FunctionsPrintFactsTest.php b/tests/app/Functions/FunctionsPrintFactsTest.php index f9f4cacdad..f25add2e82 100644 --- a/tests/app/Functions/FunctionsPrintFactsTest.php +++ b/tests/app/Functions/FunctionsPrintFactsTest.php @@ -22,6 +22,8 @@ class FunctionsPrintFactsTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Functions/FunctionsPrintListsTest.php b/tests/app/Functions/FunctionsPrintListsTest.php index 83df686dd7..ef7639fbe4 100644 --- a/tests/app/Functions/FunctionsPrintListsTest.php +++ b/tests/app/Functions/FunctionsPrintListsTest.php @@ -22,6 +22,8 @@ class FunctionsPrintListsTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Functions/FunctionsPrintTest.php b/tests/app/Functions/FunctionsPrintTest.php index 33fbeb0c99..9e2f6febef 100644 --- a/tests/app/Functions/FunctionsPrintTest.php +++ b/tests/app/Functions/FunctionsPrintTest.php @@ -22,6 +22,8 @@ class FunctionsPrintTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Functions/FunctionsRtlTest.php b/tests/app/Functions/FunctionsRtlTest.php index 3f18e05e7f..78ac1203a4 100644 --- a/tests/app/Functions/FunctionsRtlTest.php +++ b/tests/app/Functions/FunctionsRtlTest.php @@ -22,6 +22,8 @@ class FunctionsRtlTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/GedcomCode/GedcomCodeAdopTest.php b/tests/app/GedcomCode/GedcomCodeAdopTest.php index 3e156d6aa7..cdaef698e4 100644 --- a/tests/app/GedcomCode/GedcomCodeAdopTest.php +++ b/tests/app/GedcomCode/GedcomCodeAdopTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\GedcomCode; class GedcomCodeAdopTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/GedcomCode/GedcomCodeNameTest.php b/tests/app/GedcomCode/GedcomCodeNameTest.php index 00eb07fd24..92833c872e 100644 --- a/tests/app/GedcomCode/GedcomCodeNameTest.php +++ b/tests/app/GedcomCode/GedcomCodeNameTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\GedcomCode; class GedcomCodeNameTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/GedcomCode/GedcomCodePediTest.php b/tests/app/GedcomCode/GedcomCodePediTest.php index e12a1c8178..66fd96bc2a 100644 --- a/tests/app/GedcomCode/GedcomCodePediTest.php +++ b/tests/app/GedcomCode/GedcomCodePediTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\GedcomCode; class GedcomCodePediTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/GedcomCode/GedcomCodeQuayTest.php b/tests/app/GedcomCode/GedcomCodeQuayTest.php index 0f861c44e6..4ebc8d6c96 100644 --- a/tests/app/GedcomCode/GedcomCodeQuayTest.php +++ b/tests/app/GedcomCode/GedcomCodeQuayTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\GedcomCode; class GedcomCodeQuayTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/GedcomCode/GedcomCodeRelaTest.php b/tests/app/GedcomCode/GedcomCodeRelaTest.php index 92a60b9b6b..0fd8bd6b07 100644 --- a/tests/app/GedcomCode/GedcomCodeRelaTest.php +++ b/tests/app/GedcomCode/GedcomCodeRelaTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\GedcomCode; class GedcomCodeRelaTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/GedcomCode/GedcomCodeStatTest.php b/tests/app/GedcomCode/GedcomCodeStatTest.php index c8a2ba0ccd..712abe5419 100644 --- a/tests/app/GedcomCode/GedcomCodeStatTest.php +++ b/tests/app/GedcomCode/GedcomCodeStatTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\GedcomCode; class GedcomCodeStatTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/GedcomCode/GedcomCodeTempTest.php b/tests/app/GedcomCode/GedcomCodeTempTest.php index 275a2f70c9..e3eb4b8e65 100644 --- a/tests/app/GedcomCode/GedcomCodeTempTest.php +++ b/tests/app/GedcomCode/GedcomCodeTempTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\GedcomCode; class GedcomCodeTempTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/GedcomRecordTest.php b/tests/app/GedcomRecordTest.php index 4106a05b2d..5110262c2b 100644 --- a/tests/app/GedcomRecordTest.php +++ b/tests/app/GedcomRecordTest.php @@ -21,15 +21,10 @@ namespace Fisharebest\Webtrees; class GedcomRecordTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/GedcomTagTest.php b/tests/app/GedcomTagTest.php index 7a29499f32..ae390f82b1 100644 --- a/tests/app/GedcomTagTest.php +++ b/tests/app/GedcomTagTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class GedcomTagTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/I18NTest.php b/tests/app/I18NTest.php index e5ea3f558d..2e54e73040 100644 --- a/tests/app/I18NTest.php +++ b/tests/app/I18NTest.php @@ -24,6 +24,8 @@ class I18NTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests + * + * @return void */ public function setUp() { diff --git a/tests/app/IndividualTest.php b/tests/app/IndividualTest.php index 6cbe976c04..f3d661e5e3 100644 --- a/tests/app/IndividualTest.php +++ b/tests/app/IndividualTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class IndividualTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/LogTest.php b/tests/app/LogTest.php index e6c8c8203a..d9a8ab8697 100644 --- a/tests/app/LogTest.php +++ b/tests/app/LogTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class LogTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/MailTest.php b/tests/app/MailTest.php index 17e7f96b35..7dee63750c 100644 --- a/tests/app/MailTest.php +++ b/tests/app/MailTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class MailTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/MediaTest.php b/tests/app/MediaTest.php index 88b1552128..c8bbb85ab1 100644 --- a/tests/app/MediaTest.php +++ b/tests/app/MediaTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class MediaTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/MenuTest.php b/tests/app/MenuTest.php index 57939db7c7..79bf162f11 100644 --- a/tests/app/MenuTest.php +++ b/tests/app/MenuTest.php @@ -24,6 +24,8 @@ class MenuTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests. + * + * @return void */ public function setUp() { diff --git a/tests/app/Module/AhnentafelReportModuleTest.php b/tests/app/Module/AhnentafelReportModuleTest.php index 637ad27e3f..b602a7e58e 100644 --- a/tests/app/Module/AhnentafelReportModuleTest.php +++ b/tests/app/Module/AhnentafelReportModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class AhnentafelReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/AlbumModuleTest.php b/tests/app/Module/AlbumModuleTest.php index a084f4ba55..c1f91659a0 100644 --- a/tests/app/Module/AlbumModuleTest.php +++ b/tests/app/Module/AlbumModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class AlbumModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/AncestorsChartModuleTest.php b/tests/app/Module/AncestorsChartModuleTest.php index f2b9bc9514..1c5bd04bac 100644 --- a/tests/app/Module/AncestorsChartModuleTest.php +++ b/tests/app/Module/AncestorsChartModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class AncestorsChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php index 100a8e72d7..0363c8034f 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module\BatchUpdate; class BatchUpdateBasePluginTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php index e609b3cc39..03f7971d10 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module\BatchUpdate; class BatchUpdateDuplicateLinksPluginTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php index 56a720221b..7bc85020d8 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module\BatchUpdate; class BatchUpdateMarriedNamesPluginTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php index 51ffb71f8d..5e4643a779 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module\BatchUpdate; class BatchUpdateMissingDeathPluginTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php index 3b310ac925..689645e97e 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module\BatchUpdate; class BatchUpdateNameFormatPluginTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php index 5b72b66b33..1061b4d3cb 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module\BatchUpdate; class BatchUpdateSearchReplacePluginTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/BatchUpdateModuleTest.php b/tests/app/Module/BatchUpdateModuleTest.php index 3c3e6f24a5..701168d088 100644 --- a/tests/app/Module/BatchUpdateModuleTest.php +++ b/tests/app/Module/BatchUpdateModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class BatchUpdateModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/BirthDeathMarriageReportModuleTest.php b/tests/app/Module/BirthDeathMarriageReportModuleTest.php index e7aaaf5a8d..50940a1437 100644 --- a/tests/app/Module/BirthDeathMarriageReportModuleTest.php +++ b/tests/app/Module/BirthDeathMarriageReportModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class BirthDeathMarriageReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/BirthReportModuleTest.php b/tests/app/Module/BirthReportModuleTest.php index 452fc11700..b1dbbdcff2 100644 --- a/tests/app/Module/BirthReportModuleTest.php +++ b/tests/app/Module/BirthReportModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class BirthReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/CemeteryReportModuleTest.php b/tests/app/Module/CemeteryReportModuleTest.php index 93d032228f..8c24d33458 100644 --- a/tests/app/Module/CemeteryReportModuleTest.php +++ b/tests/app/Module/CemeteryReportModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class CemeteryReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/CensusAssistantModuleTest.php b/tests/app/Module/CensusAssistantModuleTest.php index 7343ac966b..320ba61634 100644 --- a/tests/app/Module/CensusAssistantModuleTest.php +++ b/tests/app/Module/CensusAssistantModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class CensusAssistantModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/ChangeReportModuleTest.php b/tests/app/Module/ChangeReportModuleTest.php index 7ce31ed30d..e7faa5cc4b 100644 --- a/tests/app/Module/ChangeReportModuleTest.php +++ b/tests/app/Module/ChangeReportModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class ChangeReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/ChartsBlockModuleTest.php b/tests/app/Module/ChartsBlockModuleTest.php index 77c3b829c8..b31fa2fdad 100644 --- a/tests/app/Module/ChartsBlockModuleTest.php +++ b/tests/app/Module/ChartsBlockModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class ChartsBlockModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/CkeditorModuleTest.php b/tests/app/Module/CkeditorModuleTest.php index cb764aa12d..91e8ac7e49 100644 --- a/tests/app/Module/CkeditorModuleTest.php +++ b/tests/app/Module/CkeditorModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class CkeditorModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/ClippingsCartModuleTest.php b/tests/app/Module/ClippingsCartModuleTest.php index a6f28b783a..e738e8121e 100644 --- a/tests/app/Module/ClippingsCartModuleTest.php +++ b/tests/app/Module/ClippingsCartModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class ClippingsCartModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/CompactTreeChartModuleTest.php b/tests/app/Module/CompactTreeChartModuleTest.php index f338b1f80a..246bafd294 100644 --- a/tests/app/Module/CompactTreeChartModuleTest.php +++ b/tests/app/Module/CompactTreeChartModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class CompactTreeChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/DeathReportModuleTest.php b/tests/app/Module/DeathReportModuleTest.php index 46301a61d6..61309d37be 100644 --- a/tests/app/Module/DeathReportModuleTest.php +++ b/tests/app/Module/DeathReportModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class DeathReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/DescendancyChartModuleTest.php b/tests/app/Module/DescendancyChartModuleTest.php index 4314a4e797..a7d0656e69 100644 --- a/tests/app/Module/DescendancyChartModuleTest.php +++ b/tests/app/Module/DescendancyChartModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class DescendancyChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/DescendancyModuleTest.php b/tests/app/Module/DescendancyModuleTest.php index 41bd5d5505..2888531300 100644 --- a/tests/app/Module/DescendancyModuleTest.php +++ b/tests/app/Module/DescendancyModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class DescendancyModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/DescendancyReportModuleTest.php b/tests/app/Module/DescendancyReportModuleTest.php index 07e4107b51..5d83e550f6 100644 --- a/tests/app/Module/DescendancyReportModuleTest.php +++ b/tests/app/Module/DescendancyReportModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class DescendancyReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/ExtraInformationModuleTest.php b/tests/app/Module/ExtraInformationModuleTest.php index e7e63153ce..e433cf4a62 100644 --- a/tests/app/Module/ExtraInformationModuleTest.php +++ b/tests/app/Module/ExtraInformationModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class ExtraInformationModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/FactSourcesReportModuleTest.php b/tests/app/Module/FactSourcesReportModuleTest.php index 610aeb4050..8cf7d47e0f 100644 --- a/tests/app/Module/FactSourcesReportModuleTest.php +++ b/tests/app/Module/FactSourcesReportModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class FactSourcesReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/FamilyBookChartModuleTest.php b/tests/app/Module/FamilyBookChartModuleTest.php index a2dca3e7a7..8b80921ab9 100644 --- a/tests/app/Module/FamilyBookChartModuleTest.php +++ b/tests/app/Module/FamilyBookChartModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class FamilyBookChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/FamilyGroupReportModuleTest.php b/tests/app/Module/FamilyGroupReportModuleTest.php index c5ccab0dd3..13a876d74c 100644 --- a/tests/app/Module/FamilyGroupReportModuleTest.php +++ b/tests/app/Module/FamilyGroupReportModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class FamilyGroupReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/FamilyNavigatorModuleTest.php b/tests/app/Module/FamilyNavigatorModuleTest.php index 6ebe62ac3a..e6fa03d8ee 100644 --- a/tests/app/Module/FamilyNavigatorModuleTest.php +++ b/tests/app/Module/FamilyNavigatorModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class FamilyNavigatorModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/FamilyTreeFavoritesModuleTest.php b/tests/app/Module/FamilyTreeFavoritesModuleTest.php index e3497f28c1..d557340b4c 100644 --- a/tests/app/Module/FamilyTreeFavoritesModuleTest.php +++ b/tests/app/Module/FamilyTreeFavoritesModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class FamilyTreeFavoritesModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/FamilyTreeNewsModuleTest.php b/tests/app/Module/FamilyTreeNewsModuleTest.php index 1953d3750a..98927df4de 100644 --- a/tests/app/Module/FamilyTreeNewsModuleTest.php +++ b/tests/app/Module/FamilyTreeNewsModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class FamilyTreeNewsModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/FamilyTreeStatisticsModuleTest.php b/tests/app/Module/FamilyTreeStatisticsModuleTest.php index ff0f4d0a92..55e7f5f3ac 100644 --- a/tests/app/Module/FamilyTreeStatisticsModuleTest.php +++ b/tests/app/Module/FamilyTreeStatisticsModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class FamilyTreeStatisticsModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/FanChartModuleTest.php b/tests/app/Module/FanChartModuleTest.php index 29853320a3..e232349a33 100644 --- a/tests/app/Module/FanChartModuleTest.php +++ b/tests/app/Module/FanChartModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class FanChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php b/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php index 65dae34406..cc0850e40e 100644 --- a/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php +++ b/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class FrequentlyAskedQuestionsModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/HourglassChartModuleTest.php b/tests/app/Module/HourglassChartModuleTest.php index c8a78d72d7..b271ef28ee 100644 --- a/tests/app/Module/HourglassChartModuleTest.php +++ b/tests/app/Module/HourglassChartModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class HourglassChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/HtmlBlockModuleTest.php b/tests/app/Module/HtmlBlockModuleTest.php index 9d4698ffdb..e3d5bd1d1c 100644 --- a/tests/app/Module/HtmlBlockModuleTest.php +++ b/tests/app/Module/HtmlBlockModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class HtmlBlockModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/IndividualFactsTabModuleTest.php b/tests/app/Module/IndividualFactsTabModuleTest.php index e198a91ec8..3879aa83ba 100644 --- a/tests/app/Module/IndividualFactsTabModuleTest.php +++ b/tests/app/Module/IndividualFactsTabModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class IndividualFactsTabModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/IndividualFamiliesReportModuleTest.php b/tests/app/Module/IndividualFamiliesReportModuleTest.php index a8b77c20d5..572fc0d079 100644 --- a/tests/app/Module/IndividualFamiliesReportModuleTest.php +++ b/tests/app/Module/IndividualFamiliesReportModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class IndividualFamiliesReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/IndividualReportModuleTest.php b/tests/app/Module/IndividualReportModuleTest.php index dc2a07f827..c452c3cf66 100644 --- a/tests/app/Module/IndividualReportModuleTest.php +++ b/tests/app/Module/IndividualReportModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class IndividualReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/InteractiveTree/TreeViewTest.php b/tests/app/Module/InteractiveTree/TreeViewTest.php index 3a754e0d90..3f6bee3e7d 100644 --- a/tests/app/Module/InteractiveTree/TreeViewTest.php +++ b/tests/app/Module/InteractiveTree/TreeViewTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module\InteractiveTree; class TreeViewTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/InteractiveTreeModuleTest.php b/tests/app/Module/InteractiveTreeModuleTest.php index d3f3b8a52e..35d2cd2049 100644 --- a/tests/app/Module/InteractiveTreeModuleTest.php +++ b/tests/app/Module/InteractiveTreeModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class InteractiveTreeModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/LifespansChartModuleTest.php b/tests/app/Module/LifespansChartModuleTest.php index 4b3f848e3e..9e27399358 100644 --- a/tests/app/Module/LifespansChartModuleTest.php +++ b/tests/app/Module/LifespansChartModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class LifespansChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/LoggedInUsersModuleTest.php b/tests/app/Module/LoggedInUsersModuleTest.php index ec21b4f9a0..d7a9b546bc 100644 --- a/tests/app/Module/LoggedInUsersModuleTest.php +++ b/tests/app/Module/LoggedInUsersModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class LoggedInUsersModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/LoginBlockModuleTest.php b/tests/app/Module/LoginBlockModuleTest.php index 88dda82605..751921e81c 100644 --- a/tests/app/Module/LoginBlockModuleTest.php +++ b/tests/app/Module/LoginBlockModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class LoginBlockModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/MarriageReportModuleTest.php b/tests/app/Module/MarriageReportModuleTest.php index 4a98b10545..5c8a1c13ca 100644 --- a/tests/app/Module/MarriageReportModuleTest.php +++ b/tests/app/Module/MarriageReportModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class MarriageReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/MediaTabModuleTest.php b/tests/app/Module/MediaTabModuleTest.php index 3f50a10684..cc334dd4d2 100644 --- a/tests/app/Module/MediaTabModuleTest.php +++ b/tests/app/Module/MediaTabModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class MediaTabModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/MissingFactsReportModuleTest.php b/tests/app/Module/MissingFactsReportModuleTest.php index 6211bd9cf5..ba12202c3e 100644 --- a/tests/app/Module/MissingFactsReportModuleTest.php +++ b/tests/app/Module/MissingFactsReportModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class MissingFactsReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/ModuleBlockInterfaceTest.php b/tests/app/Module/ModuleBlockInterfaceTest.php index 21919ca6d1..fbba384514 100644 --- a/tests/app/Module/ModuleBlockInterfaceTest.php +++ b/tests/app/Module/ModuleBlockInterfaceTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class ModuleBlockInterfaceTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/ModuleChartInterfaceTest.php b/tests/app/Module/ModuleChartInterfaceTest.php index 2595bfb488..9f36375322 100644 --- a/tests/app/Module/ModuleChartInterfaceTest.php +++ b/tests/app/Module/ModuleChartInterfaceTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class ModuleChartInterfaceTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/ModuleConfigInterfaceTest.php b/tests/app/Module/ModuleConfigInterfaceTest.php index aa85fc8a0e..d6c28a3979 100644 --- a/tests/app/Module/ModuleConfigInterfaceTest.php +++ b/tests/app/Module/ModuleConfigInterfaceTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class ModuleConfigInterfaceTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/ModuleMenuInterfaceTest.php b/tests/app/Module/ModuleMenuInterfaceTest.php index c7757009e4..87100b978d 100644 --- a/tests/app/Module/ModuleMenuInterfaceTest.php +++ b/tests/app/Module/ModuleMenuInterfaceTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class ModuleMenuInterfaceTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/ModuleReportInterfaceTest.php b/tests/app/Module/ModuleReportInterfaceTest.php index 0445ca6dc0..edad721360 100644 --- a/tests/app/Module/ModuleReportInterfaceTest.php +++ b/tests/app/Module/ModuleReportInterfaceTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class ModuleReportInterfaceTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/ModuleSidebarInterfaceTest.php b/tests/app/Module/ModuleSidebarInterfaceTest.php index a9d213f514..f593202d55 100644 --- a/tests/app/Module/ModuleSidebarInterfaceTest.php +++ b/tests/app/Module/ModuleSidebarInterfaceTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class ModuleSidebarInterfaceTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/ModuleTabInterfaceTest.php b/tests/app/Module/ModuleTabInterfaceTest.php index befd4b4f0d..ba04843bd9 100644 --- a/tests/app/Module/ModuleTabInterfaceTest.php +++ b/tests/app/Module/ModuleTabInterfaceTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class ModuleTabInterfaceTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/ModuleThemeInterfaceTest.php b/tests/app/Module/ModuleThemeInterfaceTest.php index 198be673cc..90f035fdfb 100644 --- a/tests/app/Module/ModuleThemeInterfaceTest.php +++ b/tests/app/Module/ModuleThemeInterfaceTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class ModuleThemeInterfaceTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/NotesTabModuleTest.php b/tests/app/Module/NotesTabModuleTest.php index a0d6e205d9..dbff1457dc 100644 --- a/tests/app/Module/NotesTabModuleTest.php +++ b/tests/app/Module/NotesTabModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class NotesTabModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/OccupationReportModuleTest.php b/tests/app/Module/OccupationReportModuleTest.php index b4932a1d5f..d7069d1a07 100644 --- a/tests/app/Module/OccupationReportModuleTest.php +++ b/tests/app/Module/OccupationReportModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class OccupationReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/OnThisDayModuleTest.php b/tests/app/Module/OnThisDayModuleTest.php index 22ae1725fa..817efed9d3 100644 --- a/tests/app/Module/OnThisDayModuleTest.php +++ b/tests/app/Module/OnThisDayModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class OnThisDayModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/PedigreeChartModuleTest.php b/tests/app/Module/PedigreeChartModuleTest.php index a7d71d67ff..4cc5d76e31 100644 --- a/tests/app/Module/PedigreeChartModuleTest.php +++ b/tests/app/Module/PedigreeChartModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class PedigreeChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/PedigreeReportModuleTest.php b/tests/app/Module/PedigreeReportModuleTest.php index 14a1ddc46c..77d533bf38 100644 --- a/tests/app/Module/PedigreeReportModuleTest.php +++ b/tests/app/Module/PedigreeReportModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class PedigreeReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/RecentChangesModuleTest.php b/tests/app/Module/RecentChangesModuleTest.php index 811c2e91d6..8e92bbbf6a 100644 --- a/tests/app/Module/RecentChangesModuleTest.php +++ b/tests/app/Module/RecentChangesModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class RecentChangesModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/RelatedIndividualsReportModuleTest.php b/tests/app/Module/RelatedIndividualsReportModuleTest.php index 65cb1c909f..22632d6075 100644 --- a/tests/app/Module/RelatedIndividualsReportModuleTest.php +++ b/tests/app/Module/RelatedIndividualsReportModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class RelatedIndividualsReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/RelationshipsChartModuleTest.php b/tests/app/Module/RelationshipsChartModuleTest.php index 28b7ac6083..874794fe15 100644 --- a/tests/app/Module/RelationshipsChartModuleTest.php +++ b/tests/app/Module/RelationshipsChartModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class RelationshipsChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/RelativesTabModuleTest.php b/tests/app/Module/RelativesTabModuleTest.php index c219ab1db3..41d5119f3e 100644 --- a/tests/app/Module/RelativesTabModuleTest.php +++ b/tests/app/Module/RelativesTabModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class RelativesTabModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/ResearchTaskModuleTest.php b/tests/app/Module/ResearchTaskModuleTest.php index c25c1279cd..d5174a3335 100644 --- a/tests/app/Module/ResearchTaskModuleTest.php +++ b/tests/app/Module/ResearchTaskModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class ResearchTaskModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/ReviewChangesModuleTest.php b/tests/app/Module/ReviewChangesModuleTest.php index 4f966dbaae..9168d3a175 100644 --- a/tests/app/Module/ReviewChangesModuleTest.php +++ b/tests/app/Module/ReviewChangesModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class ReviewChangesModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/SiteMapModuleTest.php b/tests/app/Module/SiteMapModuleTest.php index 0ad74d09fb..29f078817b 100644 --- a/tests/app/Module/SiteMapModuleTest.php +++ b/tests/app/Module/SiteMapModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class SiteMapModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/SlideShowModuleTest.php b/tests/app/Module/SlideShowModuleTest.php index 9871510d06..b0b66b9cc6 100644 --- a/tests/app/Module/SlideShowModuleTest.php +++ b/tests/app/Module/SlideShowModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class SlideShowModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/SourcesTabModuleTest.php b/tests/app/Module/SourcesTabModuleTest.php index 6751f4d48a..ca5920c186 100644 --- a/tests/app/Module/SourcesTabModuleTest.php +++ b/tests/app/Module/SourcesTabModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class SourcesTabModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/StatisticsChartModuleTest.php b/tests/app/Module/StatisticsChartModuleTest.php index fde4d75d60..b0fa03b330 100644 --- a/tests/app/Module/StatisticsChartModuleTest.php +++ b/tests/app/Module/StatisticsChartModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class StatisticsChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/StoriesModuleTest.php b/tests/app/Module/StoriesModuleTest.php index df3d9b0990..55fb6640bf 100644 --- a/tests/app/Module/StoriesModuleTest.php +++ b/tests/app/Module/StoriesModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class StoriesModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/ThemeSelectModuleTest.php b/tests/app/Module/ThemeSelectModuleTest.php index a1b2c4606d..06dbbf4e18 100644 --- a/tests/app/Module/ThemeSelectModuleTest.php +++ b/tests/app/Module/ThemeSelectModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class ThemeSelectModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/TimelineChartModuleTest.php b/tests/app/Module/TimelineChartModuleTest.php index 0198178fd6..895d1215ab 100644 --- a/tests/app/Module/TimelineChartModuleTest.php +++ b/tests/app/Module/TimelineChartModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class TimelineChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/TopGivenNamesModuleTest.php b/tests/app/Module/TopGivenNamesModuleTest.php index 822334e034..4d988a5584 100644 --- a/tests/app/Module/TopGivenNamesModuleTest.php +++ b/tests/app/Module/TopGivenNamesModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class TopGivenNamesModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/TopPageViewsModuleTest.php b/tests/app/Module/TopPageViewsModuleTest.php index cad796e2a3..c64eebe3c5 100644 --- a/tests/app/Module/TopPageViewsModuleTest.php +++ b/tests/app/Module/TopPageViewsModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class TopPageViewsModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/TopSurnamesModuleTest.php b/tests/app/Module/TopSurnamesModuleTest.php index 40a92dc5f2..4f156b7be0 100644 --- a/tests/app/Module/TopSurnamesModuleTest.php +++ b/tests/app/Module/TopSurnamesModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class TopSurnamesModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/UpcomingAnniversariesModuleTest.php b/tests/app/Module/UpcomingAnniversariesModuleTest.php index 797101f105..568c5d2eed 100644 --- a/tests/app/Module/UpcomingAnniversariesModuleTest.php +++ b/tests/app/Module/UpcomingAnniversariesModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class UpcomingAnniversariesModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/UserFavoritesModuleTest.php b/tests/app/Module/UserFavoritesModuleTest.php index 4f47e424e5..74f53299e4 100644 --- a/tests/app/Module/UserFavoritesModuleTest.php +++ b/tests/app/Module/UserFavoritesModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class UserFavoritesModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/UserJournalModuleTest.php b/tests/app/Module/UserJournalModuleTest.php index e9a551f746..f315f784d7 100644 --- a/tests/app/Module/UserJournalModuleTest.php +++ b/tests/app/Module/UserJournalModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class UserJournalModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/UserMessagesModuleTest.php b/tests/app/Module/UserMessagesModuleTest.php index 20008bcfda..e3f796d3ed 100644 --- a/tests/app/Module/UserMessagesModuleTest.php +++ b/tests/app/Module/UserMessagesModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class UserMessagesModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/UserWelcomeModuleTest.php b/tests/app/Module/UserWelcomeModuleTest.php index e867368d4c..04b6b428f3 100644 --- a/tests/app/Module/UserWelcomeModuleTest.php +++ b/tests/app/Module/UserWelcomeModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class UserWelcomeModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/WelcomeBlockModuleTest.php b/tests/app/Module/WelcomeBlockModuleTest.php index 58971594a9..f70d41ff3a 100644 --- a/tests/app/Module/WelcomeBlockModuleTest.php +++ b/tests/app/Module/WelcomeBlockModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class WelcomeBlockModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Module/YahrzeitModuleTest.php b/tests/app/Module/YahrzeitModuleTest.php index 1509b7cdfb..8c89e2d82b 100644 --- a/tests/app/Module/YahrzeitModuleTest.php +++ b/tests/app/Module/YahrzeitModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Module; class YahrzeitModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/ModuleTest.php b/tests/app/ModuleTest.php index 381cab3fbf..c442fa118e 100644 --- a/tests/app/ModuleTest.php +++ b/tests/app/ModuleTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class ModuleTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/NoteTest.php b/tests/app/NoteTest.php index 2cb67f79e8..204f98004a 100644 --- a/tests/app/NoteTest.php +++ b/tests/app/NoteTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class NoteTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/PlaceTest.php b/tests/app/PlaceTest.php index e201a7d4e0..a737f0f019 100644 --- a/tests/app/PlaceTest.php +++ b/tests/app/PlaceTest.php @@ -20,14 +20,9 @@ class PlaceTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Report/ReportBaseTest.php b/tests/app/Report/ReportBaseTest.php index 93b242421f..c875c00777 100644 --- a/tests/app/Report/ReportBaseTest.php +++ b/tests/app/Report/ReportBaseTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Report; class ReportBaseTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Report/ReportHTMLTest.php b/tests/app/Report/ReportHTMLTest.php index 9f4be04838..0f352f1cf7 100644 --- a/tests/app/Report/ReportHTMLTest.php +++ b/tests/app/Report/ReportHTMLTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Report; class ReportHTMLTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Report/ReportPDFTest.php b/tests/app/Report/ReportPDFTest.php index 4b7ee4812d..ad7cfec62a 100644 --- a/tests/app/Report/ReportPDFTest.php +++ b/tests/app/Report/ReportPDFTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees\Report; class ReportPDFTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/RepositoryTest.php b/tests/app/RepositoryTest.php index 122fb94d55..3eb15088e9 100644 --- a/tests/app/RepositoryTest.php +++ b/tests/app/RepositoryTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class RepositoryTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/Services/TimeoutServiceTest.php b/tests/app/Services/TimeoutServiceTest.php index 58f5fe4108..dbc349907d 100644 --- a/tests/app/Services/TimeoutServiceTest.php +++ b/tests/app/Services/TimeoutServiceTest.php @@ -52,6 +52,8 @@ class TimeoutServiceTest extends TestCase /** * Initialize the test script + * + * @return void */ public function setUp() { @@ -61,6 +63,8 @@ class TimeoutServiceTest extends TestCase /** * @covers \Fisharebest\Webtrees\Services\TimeoutService::__construct() * @covers \Fisharebest\Webtrees\Services\TimeoutService::isTimeNearlyUp() + * + * @return void */ public function testNoTimeOut() { @@ -80,6 +84,8 @@ class TimeoutServiceTest extends TestCase /** * @covers \Fisharebest\Webtrees\Services\TimeoutService::__construct() * @covers \Fisharebest\Webtrees\Services\TimeoutService::isTimeNearlyUp() + * + * @return void */ public function testTimeOutReached() { @@ -105,6 +111,8 @@ class TimeoutServiceTest extends TestCase /** * @covers \Fisharebest\Webtrees\Services\TimeoutService::__construct() * @covers \Fisharebest\Webtrees\Services\TimeoutService::isTimeNearlyUp() + * + * @return void */ public function testTimeOutNotReached() { @@ -130,6 +138,8 @@ class TimeoutServiceTest extends TestCase /** * @covers \Fisharebest\Webtrees\Services\TimeoutService::__construct() * @covers \Fisharebest\Webtrees\Services\TimeoutService::isTimeLimitUp() + * + * @return void */ public function testTimeLimitNotReached() { @@ -149,6 +159,8 @@ class TimeoutServiceTest extends TestCase /** * @covers \Fisharebest\Webtrees\Services\TimeoutService::__construct() * @covers \Fisharebest\Webtrees\Services\TimeoutService::isTimeLimitUp() + * + * @return void */ public function testTimeLimitReached() { diff --git a/tests/app/SiteTest.php b/tests/app/SiteTest.php index 08c1e0ac97..8a75425795 100644 --- a/tests/app/SiteTest.php +++ b/tests/app/SiteTest.php @@ -20,14 +20,9 @@ class SiteTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/SoundexTest.php b/tests/app/SoundexTest.php index ce0af92bd8..9f2fea1e72 100644 --- a/tests/app/SoundexTest.php +++ b/tests/app/SoundexTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class SoundexTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/SourceTest.php b/tests/app/SourceTest.php index 20d0602e1f..ebda174b01 100644 --- a/tests/app/SourceTest.php +++ b/tests/app/SourceTest.php @@ -20,14 +20,9 @@ class SourceTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/StatementTest.php b/tests/app/StatementTest.php index d78c112caa..2a17e6bf49 100644 --- a/tests/app/StatementTest.php +++ b/tests/app/StatementTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class StatementTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/StatsTest.php b/tests/app/StatsTest.php index 3d0a3a5709..e8f5daa3af 100644 --- a/tests/app/StatsTest.php +++ b/tests/app/StatsTest.php @@ -22,6 +22,8 @@ class StatsTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests + * + * @return void */ public function setUp() { diff --git a/tests/app/SurnameTradition/DefaultSurnameTraditionTest.php b/tests/app/SurnameTradition/DefaultSurnameTraditionTest.php index b6ef66f917..965669023a 100644 --- a/tests/app/SurnameTradition/DefaultSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/DefaultSurnameTraditionTest.php @@ -28,6 +28,8 @@ class DefaultSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase /** * Prepare the environment for these tests + * + * @return void */ public function setUp() { @@ -38,6 +40,8 @@ class DefaultSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test whether married surnames are used * * @covers \Fisharebest\Webtrees\SurnameTradition\DefaultSurnameTradition + * + * @return void */ public function testMarriedSurnames() { @@ -48,6 +52,8 @@ class DefaultSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test whether surnames are used * * @covers \Fisharebest\Webtrees\SurnameTradition\DefaultSurnameTradition + * + * @return void */ public function testSurnames() { @@ -58,6 +64,8 @@ class DefaultSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new son names * * @covers \Fisharebest\Webtrees\SurnameTradition\DefaultSurnameTradition + * + * @return void */ public function testNewSonNames() { @@ -71,6 +79,8 @@ class DefaultSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new daughter names * * @covers \Fisharebest\Webtrees\SurnameTradition\DefaultSurnameTradition + * + * @return void */ public function testNewDaughterNames() { @@ -84,6 +94,8 @@ class DefaultSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\DefaultSurnameTradition + * + * @return void */ public function testNewChildNames() { @@ -97,6 +109,8 @@ class DefaultSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new father names * * @covers \Fisharebest\Webtrees\SurnameTradition\DefaultSurnameTradition + * + * @return void */ public function testNewFatherNames() { @@ -110,6 +124,8 @@ class DefaultSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new mother names * * @covers \Fisharebest\Webtrees\SurnameTradition\DefaultSurnameTradition + * + * @return void */ public function testNewMotherNames() { @@ -123,6 +139,8 @@ class DefaultSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new parent names * * @covers \Fisharebest\Webtrees\SurnameTradition\DefaultSurnameTradition + * + * @return void */ public function testNewParentNames() { @@ -136,6 +154,8 @@ class DefaultSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new husband names * * @covers \Fisharebest\Webtrees\SurnameTradition\DefaultSurnameTradition + * + * @return void */ public function testNewHusbandNames() { @@ -149,6 +169,8 @@ class DefaultSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new wife names * * @covers \Fisharebest\Webtrees\SurnameTradition\DefaultSurnameTradition + * + * @return void */ public function testNewWifeNames() { @@ -162,6 +184,8 @@ class DefaultSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new spouse names * * @covers \Fisharebest\Webtrees\SurnameTradition\DefaultSurnameTradition + * + * @return void */ public function testNewSpouseNames() { diff --git a/tests/app/SurnameTradition/IcelandicSurnameTraditionTest.php b/tests/app/SurnameTradition/IcelandicSurnameTraditionTest.php index 5182bb8d8a..23dd9e2ad5 100644 --- a/tests/app/SurnameTradition/IcelandicSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/IcelandicSurnameTraditionTest.php @@ -28,6 +28,8 @@ class IcelandicSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase /** * Prepare the environment for these tests + * + * @return void */ public function setUp() { @@ -38,6 +40,8 @@ class IcelandicSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test whether married surnames are used * * @covers \Fisharebest\Webtrees\SurnameTradition\IcelandicSurnameTradition + * + * @return void */ public function testMarriedSurnames() { @@ -48,6 +52,8 @@ class IcelandicSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test whether surnames are used * * @covers \Fisharebest\Webtrees\SurnameTradition\IcelandicSurnameTradition + * + * @return void */ public function testSurnames() { @@ -58,6 +64,8 @@ class IcelandicSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new son names * * @covers \Fisharebest\Webtrees\SurnameTradition\IcelandicSurnameTradition + * + * @return void */ public function testNewSonNames() { @@ -71,6 +79,8 @@ class IcelandicSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new daughter names * * @covers \Fisharebest\Webtrees\SurnameTradition\IcelandicSurnameTradition + * + * @return void */ public function testNewDaughterNames() { @@ -84,6 +94,8 @@ class IcelandicSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\IcelandicSurnameTradition + * + * @return void */ public function testNewChildNames() { @@ -97,6 +109,8 @@ class IcelandicSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new father names * * @covers \Fisharebest\Webtrees\SurnameTradition\IcelandicSurnameTradition + * + * @return void */ public function testNewFatherNames() { @@ -113,6 +127,8 @@ class IcelandicSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new mother names * * @covers \Fisharebest\Webtrees\SurnameTradition\IcelandicSurnameTradition + * + * @return void */ public function testNewMotherNames() { @@ -126,6 +142,8 @@ class IcelandicSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new parent names * * @covers \Fisharebest\Webtrees\SurnameTradition\IcelandicSurnameTradition + * + * @return void */ public function testNewParentNames() { @@ -139,6 +157,8 @@ class IcelandicSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new husband names * * @covers \Fisharebest\Webtrees\SurnameTradition\IcelandicSurnameTradition + * + * @return void */ public function testNewHusbandNames() { @@ -152,6 +172,8 @@ class IcelandicSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new wife names * * @covers \Fisharebest\Webtrees\SurnameTradition\IcelandicSurnameTradition + * + * @return void */ public function testNewWifeNames() { @@ -165,6 +187,8 @@ class IcelandicSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new spouse names * * @covers \Fisharebest\Webtrees\SurnameTradition\IcelandicSurnameTradition + * + * @return void */ public function testNewSpouseNames() { diff --git a/tests/app/SurnameTradition/LithuanianSurnameTraditionTest.php b/tests/app/SurnameTradition/LithuanianSurnameTraditionTest.php index f179894a2c..e51a54562a 100644 --- a/tests/app/SurnameTradition/LithuanianSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/LithuanianSurnameTraditionTest.php @@ -28,6 +28,8 @@ class LithuanianSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase /** * Prepare the environment for these tests + * + * @return void */ public function setUp() { @@ -39,6 +41,8 @@ class LithuanianSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\LithuanianSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testMarriedSurnames() { @@ -50,6 +54,8 @@ class LithuanianSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\LithuanianSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testSurnames() { @@ -61,6 +67,8 @@ class LithuanianSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\LithuanianSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewSonNames() { @@ -78,6 +86,8 @@ class LithuanianSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\LithuanianSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewDaughterNames() { @@ -95,6 +105,8 @@ class LithuanianSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\LithuanianSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewDaughterNamesInflected() { @@ -147,6 +159,8 @@ class LithuanianSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\LithuanianSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewChildNames() { @@ -164,6 +178,8 @@ class LithuanianSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\LithuanianSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewChildNamesWithNoParentsNames() { @@ -178,6 +194,8 @@ class LithuanianSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\LithuanianSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewFatherNames() { @@ -195,6 +213,8 @@ class LithuanianSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\LithuanianSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewFatherNamesInflected() { @@ -233,6 +253,8 @@ class LithuanianSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\LithuanianSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewMotherNames() { @@ -247,6 +269,8 @@ class LithuanianSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\LithuanianSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewParentNames() { @@ -261,6 +285,8 @@ class LithuanianSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\LithuanianSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewHusbandNames() { @@ -275,6 +301,8 @@ class LithuanianSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\LithuanianSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewWifeNames() { @@ -292,6 +320,8 @@ class LithuanianSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\LithuanianSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewSpouseNames() { diff --git a/tests/app/SurnameTradition/MatrilinealSurnameTraditionTest.php b/tests/app/SurnameTradition/MatrilinealSurnameTraditionTest.php index 6510ff56ee..56d1f464f7 100644 --- a/tests/app/SurnameTradition/MatrilinealSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/MatrilinealSurnameTraditionTest.php @@ -28,6 +28,8 @@ class MatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase /** * Prepare the environment for these tests + * + * @return void */ public function setUp() { @@ -38,6 +40,8 @@ class MatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test whether married surnames are used * * @covers \Fisharebest\Webtrees\SurnameTradition\MatrilinealSurnameTradition + * + * @return void */ public function testMarriedSurnames() { @@ -48,6 +52,8 @@ class MatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test whether surnames are used * * @covers \Fisharebest\Webtrees\SurnameTradition\MatrilinealSurnameTradition + * + * @return void */ public function testSurnames() { @@ -58,6 +64,8 @@ class MatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new son names * * @covers \Fisharebest\Webtrees\SurnameTradition\MatrilinealSurnameTradition + * + * @return void */ public function testNewSonNames() { @@ -74,6 +82,8 @@ class MatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new daughter names * * @covers \Fisharebest\Webtrees\SurnameTradition\MatrilinealSurnameTradition + * + * @return void */ public function testNewDaughterNames() { @@ -90,6 +100,8 @@ class MatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\MatrilinealSurnameTradition + * + * @return void */ public function testNewChildNames() { @@ -106,6 +118,8 @@ class MatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\MatrilinealSurnameTradition + * + * @return void */ public function testNewChildNamesWithSpfx() { @@ -123,6 +137,8 @@ class MatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\MatrilinealSurnameTradition + * + * @return void */ public function testNewChildNamesWithNoParentsNames() { @@ -136,6 +152,8 @@ class MatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new father names * * @covers \Fisharebest\Webtrees\SurnameTradition\MatrilinealSurnameTradition + * + * @return void */ public function testNewFatherNames() { @@ -149,6 +167,8 @@ class MatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new mother names * * @covers \Fisharebest\Webtrees\SurnameTradition\MatrilinealSurnameTradition + * + * @return void */ public function testNewMotherNames() { @@ -165,6 +185,8 @@ class MatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new parent names * * @covers \Fisharebest\Webtrees\SurnameTradition\MatrilinealSurnameTradition + * + * @return void */ public function testNewParentNames() { @@ -178,6 +200,8 @@ class MatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new husband names * * @covers \Fisharebest\Webtrees\SurnameTradition\MatrilinealSurnameTradition + * + * @return void */ public function testNewHusbandNames() { @@ -191,6 +215,8 @@ class MatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new wife names * * @covers \Fisharebest\Webtrees\SurnameTradition\MatrilinealSurnameTradition + * + * @return void */ public function testNewWifeNames() { @@ -204,6 +230,8 @@ class MatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new spouse names * * @covers \Fisharebest\Webtrees\SurnameTradition\MatrilinealSurnameTradition + * + * @return void */ public function testNewSpouseNames() { diff --git a/tests/app/SurnameTradition/PaternalSurnameTraditionTest.php b/tests/app/SurnameTradition/PaternalSurnameTraditionTest.php index 8896d6076d..acb595eda6 100644 --- a/tests/app/SurnameTradition/PaternalSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/PaternalSurnameTraditionTest.php @@ -28,6 +28,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase /** * Prepare the environment for these tests + * + * @return void */ public function setUp() { @@ -38,6 +40,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test whether married surnames are used * * @covers \Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition + * + * @return void */ public function testMarriedSurnames() { @@ -48,6 +52,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test whether surnames are used * * @covers \Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition + * + * @return void */ public function testSurnames() { @@ -58,6 +64,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new son names * * @covers \Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition + * + * @return void */ public function testNewSonNames() { @@ -74,6 +82,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new daughter names * * @covers \Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition + * + * @return void */ public function testNewDaughterNames() { @@ -90,6 +100,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition + * + * @return void */ public function testNewChildNames() { @@ -106,6 +118,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition + * + * @return void */ public function testNewChildNamesWithSpfx() { @@ -123,6 +137,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition + * + * @return void */ public function testNewChildNamesWithMultipleSpfx() { @@ -140,6 +156,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition + * + * @return void */ public function testNewChildNamesWithDutchSpfx() { @@ -165,6 +183,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition + * + * @return void */ public function testNewChildNamesWithMultipleDutchSpfx() { @@ -190,6 +210,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new father names * * @covers \Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition + * + * @return void */ public function testNewFatherNames() { @@ -206,6 +228,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new mother names * * @covers \Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition + * + * @return void */ public function testNewMotherNames() { @@ -222,6 +246,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new parent names * * @covers \Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition + * + * @return void */ public function testNewParentNames() { @@ -235,6 +261,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new husband names * * @covers \Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition + * + * @return void */ public function testNewHusbandNames() { @@ -248,6 +276,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new wife names * * @covers \Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition + * + * @return void */ public function testNewWifeNames() { @@ -264,6 +294,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new wife names * * @covers \Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition + * + * @return void */ public function testNewWifeNamesWithSpfx() { @@ -280,6 +312,8 @@ class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new spouse names * * @covers \Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition + * + * @return void */ public function testNewSpouseNames() { diff --git a/tests/app/SurnameTradition/PatrilinealSurnameTraditionTest.php b/tests/app/SurnameTradition/PatrilinealSurnameTraditionTest.php index 7ba90ada9b..8a80b8fe0a 100644 --- a/tests/app/SurnameTradition/PatrilinealSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/PatrilinealSurnameTraditionTest.php @@ -28,6 +28,8 @@ class PatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase /** * Prepare the environment for these tests + * + * @return void */ public function setUp() { @@ -38,6 +40,8 @@ class PatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test whether married surnames are used * * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testMarriedSurnames() { @@ -48,6 +52,8 @@ class PatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test whether surnames are used * * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testSurnames() { @@ -58,6 +64,8 @@ class PatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new son names * * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewSonNames() { @@ -74,6 +82,8 @@ class PatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new daughter names * * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewDaughterNames() { @@ -90,6 +100,8 @@ class PatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewChildNames() { @@ -106,6 +118,8 @@ class PatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewChildNamesWithSpfx() { @@ -123,6 +137,8 @@ class PatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewChildNamesWithNoParentsNames() { @@ -136,6 +152,8 @@ class PatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new father names * * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewFatherNames() { @@ -152,6 +170,8 @@ class PatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new mother names * * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewMotherNames() { @@ -165,6 +185,8 @@ class PatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new parent names * * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewParentNames() { @@ -178,6 +200,8 @@ class PatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new husband names * * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewHusbandNames() { @@ -191,6 +215,8 @@ class PatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new wife names * * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewWifeNames() { @@ -204,6 +230,8 @@ class PatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new spouse names * * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewSpouseNames() { diff --git a/tests/app/SurnameTradition/PolishSurnameTraditionTest.php b/tests/app/SurnameTradition/PolishSurnameTraditionTest.php index ea304876ed..733785d103 100644 --- a/tests/app/SurnameTradition/PolishSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/PolishSurnameTraditionTest.php @@ -28,6 +28,8 @@ class PolishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase /** * Prepare the environment for these tests + * + * @return void */ public function setUp() { @@ -39,6 +41,8 @@ class PolishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testMarriedSurnames() { @@ -50,6 +54,8 @@ class PolishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testSurnames() { @@ -61,6 +67,8 @@ class PolishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewSonNames() { @@ -78,6 +86,8 @@ class PolishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewDaughterNames() { @@ -95,6 +105,8 @@ class PolishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewDaughterNamesInflected() { @@ -133,6 +145,8 @@ class PolishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewChildNames() { @@ -150,6 +164,8 @@ class PolishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewChildNamesWithNoParentsNames() { @@ -164,6 +180,8 @@ class PolishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewFatherNames() { @@ -181,6 +199,8 @@ class PolishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewFatherNamesInflected() { @@ -219,6 +239,8 @@ class PolishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewMotherNames() { @@ -233,6 +255,8 @@ class PolishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewParentNames() { @@ -247,6 +271,8 @@ class PolishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewHusbandNames() { @@ -261,6 +287,8 @@ class PolishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewWifeNames() { @@ -278,6 +306,8 @@ class PolishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * * @covers \Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition * @covers \Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition + * + * @return void */ public function testNewSpouseNames() { diff --git a/tests/app/SurnameTradition/PortugueseSurnameTraditionTest.php b/tests/app/SurnameTradition/PortugueseSurnameTraditionTest.php index 978e8ba0fd..13a1dd5671 100644 --- a/tests/app/SurnameTradition/PortugueseSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/PortugueseSurnameTraditionTest.php @@ -28,6 +28,8 @@ class PortugueseSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase /** * Prepare the environment for these tests + * + * @return void */ public function setUp() { @@ -38,6 +40,8 @@ class PortugueseSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test whether married surnames are used * * @covers \Fisharebest\Webtrees\SurnameTradition\PortugueseSurnameTradition + * + * @return void */ public function testMarriedSurnames() { @@ -48,6 +52,8 @@ class PortugueseSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test whether surnames are used * * @covers \Fisharebest\Webtrees\SurnameTradition\PortugueseSurnameTradition + * + * @return void */ public function testSurnames() { @@ -58,6 +64,8 @@ class PortugueseSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new son names * * @covers \Fisharebest\Webtrees\SurnameTradition\PortugueseSurnameTradition + * + * @return void */ public function testNewSonNames() { @@ -74,6 +82,8 @@ class PortugueseSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new daughter names * * @covers \Fisharebest\Webtrees\SurnameTradition\PortugueseSurnameTradition + * + * @return void */ public function testNewDaughterNames() { @@ -90,6 +100,8 @@ class PortugueseSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\PortugueseSurnameTradition + * + * @return void */ public function testNewChildNames() { @@ -106,6 +118,8 @@ class PortugueseSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\PortugueseSurnameTradition + * + * @return void */ public function testNewChildNamesWithNoParentsNames() { @@ -122,6 +136,8 @@ class PortugueseSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\PortugueseSurnameTradition + * + * @return void */ public function testNewChildNamesCompunds() { @@ -145,6 +161,8 @@ class PortugueseSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new father names * * @covers \Fisharebest\Webtrees\SurnameTradition\PortugueseSurnameTradition + * + * @return void */ public function testNewFatherNames() { @@ -161,6 +179,8 @@ class PortugueseSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new mother names * * @covers \Fisharebest\Webtrees\SurnameTradition\PortugueseSurnameTradition + * + * @return void */ public function testNewMotherNames() { @@ -177,6 +197,8 @@ class PortugueseSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new parent names * * @covers \Fisharebest\Webtrees\SurnameTradition\PortugueseSurnameTradition + * + * @return void */ public function testNewParentNames() { @@ -190,6 +212,8 @@ class PortugueseSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new husband names * * @covers \Fisharebest\Webtrees\SurnameTradition\PortugueseSurnameTradition + * + * @return void */ public function testNewHusbandNames() { @@ -203,6 +227,8 @@ class PortugueseSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new wife names * * @covers \Fisharebest\Webtrees\SurnameTradition\PortugueseSurnameTradition + * + * @return void */ public function testNewWifeNames() { @@ -216,6 +242,8 @@ class PortugueseSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new spouse names * * @covers \Fisharebest\Webtrees\SurnameTradition\PortugueseSurnameTradition + * + * @return void */ public function testNewSpouseNames() { diff --git a/tests/app/SurnameTradition/SpanishSurnameTraditionTest.php b/tests/app/SurnameTradition/SpanishSurnameTraditionTest.php index 03dbbeee29..99d4ec63a6 100644 --- a/tests/app/SurnameTradition/SpanishSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/SpanishSurnameTraditionTest.php @@ -28,6 +28,8 @@ class SpanishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase /** * Prepare the environment for these tests + * + * @return void */ public function setUp() { @@ -38,6 +40,8 @@ class SpanishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test whether married surnames are used * * @covers \Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition + * + * @return void */ public function testMarriedSurnames() { @@ -48,6 +52,8 @@ class SpanishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test whether surnames are used * * @covers \Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition + * + * @return void */ public function testSurnames() { @@ -58,6 +64,8 @@ class SpanishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new son names * * @covers \Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition + * + * @return void */ public function testNewSonNames() { @@ -74,6 +82,8 @@ class SpanishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new daughter names * * @covers \Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition + * + * @return void */ public function testNewDaughterNames() { @@ -90,6 +100,8 @@ class SpanishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition + * + * @return void */ public function testNewChildNames() { @@ -106,6 +118,8 @@ class SpanishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition + * + * @return void */ public function testNewChildNamesWithNoParentsNames() { @@ -122,6 +136,8 @@ class SpanishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new child names * * @covers \Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition + * + * @return void */ public function testNewChildNamesCompunds() { @@ -145,6 +161,8 @@ class SpanishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new father names * * @covers \Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition + * + * @return void */ public function testNewFatherNames() { @@ -161,6 +179,8 @@ class SpanishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new mother names * * @covers \Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition + * + * @return void */ public function testNewMotherNames() { @@ -177,6 +197,8 @@ class SpanishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new parent names * * @covers \Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition + * + * @return void */ public function testNewParentNames() { @@ -190,6 +212,8 @@ class SpanishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new husband names * * @covers \Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition + * + * @return void */ public function testNewHusbandNames() { @@ -203,6 +227,8 @@ class SpanishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new wife names * * @covers \Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition + * + * @return void */ public function testNewWifeNames() { @@ -216,6 +242,8 @@ class SpanishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase * Test new spouse names * * @covers \Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition + * + * @return void */ public function testNewSpouseNames() { diff --git a/tests/app/SurnameTraditionTest.php b/tests/app/SurnameTraditionTest.php index dfa1115515..07e690f215 100644 --- a/tests/app/SurnameTraditionTest.php +++ b/tests/app/SurnameTraditionTest.php @@ -32,14 +32,9 @@ use Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition; class SurnameTraditionTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test create() + * + * @return void */ public function testCreate() { diff --git a/tests/app/TreeTest.php b/tests/app/TreeTest.php index 376db014b2..d0d2632ffe 100644 --- a/tests/app/TreeTest.php +++ b/tests/app/TreeTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class TreeTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/tests/app/UserTest.php b/tests/app/UserTest.php index 4afade9fb3..bb8d848d10 100644 --- a/tests/app/UserTest.php +++ b/tests/app/UserTest.php @@ -21,14 +21,9 @@ namespace Fisharebest\Webtrees; class UserTest extends \Fisharebest\Webtrees\TestCase { /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** * Test that the class exists + * + * @return void */ public function testClassExists() { diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index cc01970429..3668d71372 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -11,9 +11,611 @@ return array( 'Datamatrix' => $vendorDir . '/tecnickcom/tcpdf/include/barcodes/datamatrix.php', 'DivisionByZeroError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php', 'Error' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/Error.php', + 'File_Iterator' => $vendorDir . '/phpunit/php-file-iterator/src/Iterator.php', + 'File_Iterator_Facade' => $vendorDir . '/phpunit/php-file-iterator/src/Facade.php', + 'File_Iterator_Factory' => $vendorDir . '/phpunit/php-file-iterator/src/Factory.php', + 'Fisharebest\\Webtrees\\TestCase' => $baseDir . '/tests/TestCase.php', + 'Hamcrest\\Arrays\\IsArray' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArray.php', + 'Hamcrest\\Arrays\\IsArrayContaining' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContaining.php', + 'Hamcrest\\Arrays\\IsArrayContainingInAnyOrder' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingInAnyOrder.php', + 'Hamcrest\\Arrays\\IsArrayContainingInOrder' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingInOrder.php', + 'Hamcrest\\Arrays\\IsArrayContainingKey' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingKey.php', + 'Hamcrest\\Arrays\\IsArrayContainingKeyValuePair' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingKeyValuePair.php', + 'Hamcrest\\Arrays\\IsArrayWithSize' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayWithSize.php', + 'Hamcrest\\Arrays\\MatchingOnce' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/MatchingOnce.php', + 'Hamcrest\\Arrays\\SeriesMatchingOnce' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/SeriesMatchingOnce.php', + 'Hamcrest\\AssertionError' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/AssertionError.php', + 'Hamcrest\\BaseDescription' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/BaseDescription.php', + 'Hamcrest\\BaseMatcher' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/BaseMatcher.php', + 'Hamcrest\\Collection\\IsEmptyTraversable' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Collection/IsEmptyTraversable.php', + 'Hamcrest\\Collection\\IsTraversableWithSize' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Collection/IsTraversableWithSize.php', + 'Hamcrest\\Core\\AllOf' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/AllOf.php', + 'Hamcrest\\Core\\AnyOf' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/AnyOf.php', + 'Hamcrest\\Core\\CombinableMatcher' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/CombinableMatcher.php', + 'Hamcrest\\Core\\DescribedAs' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/DescribedAs.php', + 'Hamcrest\\Core\\Every' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Every.php', + 'Hamcrest\\Core\\HasToString' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/HasToString.php', + 'Hamcrest\\Core\\Is' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Is.php', + 'Hamcrest\\Core\\IsAnything' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsAnything.php', + 'Hamcrest\\Core\\IsCollectionContaining' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsCollectionContaining.php', + 'Hamcrest\\Core\\IsEqual' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsEqual.php', + 'Hamcrest\\Core\\IsIdentical' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsIdentical.php', + 'Hamcrest\\Core\\IsInstanceOf' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsInstanceOf.php', + 'Hamcrest\\Core\\IsNot' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsNot.php', + 'Hamcrest\\Core\\IsNull' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsNull.php', + 'Hamcrest\\Core\\IsSame' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsSame.php', + 'Hamcrest\\Core\\IsTypeOf' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsTypeOf.php', + 'Hamcrest\\Core\\Set' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Set.php', + 'Hamcrest\\Core\\ShortcutCombination' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/ShortcutCombination.php', + 'Hamcrest\\Description' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Description.php', + 'Hamcrest\\DiagnosingMatcher' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/DiagnosingMatcher.php', + 'Hamcrest\\FeatureMatcher' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/FeatureMatcher.php', + 'Hamcrest\\Internal\\SelfDescribingValue' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Internal/SelfDescribingValue.php', + 'Hamcrest\\Matcher' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Matcher.php', + 'Hamcrest\\MatcherAssert' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/MatcherAssert.php', + 'Hamcrest\\Matchers' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Matchers.php', + 'Hamcrest\\NullDescription' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/NullDescription.php', + 'Hamcrest\\Number\\IsCloseTo' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Number/IsCloseTo.php', + 'Hamcrest\\Number\\OrderingComparison' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Number/OrderingComparison.php', + 'Hamcrest\\SelfDescribing' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/SelfDescribing.php', + 'Hamcrest\\StringDescription' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/StringDescription.php', + 'Hamcrest\\Text\\IsEmptyString' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEmptyString.php', + 'Hamcrest\\Text\\IsEqualIgnoringCase' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEqualIgnoringCase.php', + 'Hamcrest\\Text\\IsEqualIgnoringWhiteSpace' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEqualIgnoringWhiteSpace.php', + 'Hamcrest\\Text\\MatchesPattern' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/MatchesPattern.php', + 'Hamcrest\\Text\\StringContains' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContains.php', + 'Hamcrest\\Text\\StringContainsIgnoringCase' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContainsIgnoringCase.php', + 'Hamcrest\\Text\\StringContainsInOrder' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContainsInOrder.php', + 'Hamcrest\\Text\\StringEndsWith' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringEndsWith.php', + 'Hamcrest\\Text\\StringStartsWith' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringStartsWith.php', + 'Hamcrest\\Text\\SubstringMatcher' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/SubstringMatcher.php', + 'Hamcrest\\TypeSafeDiagnosingMatcher' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/TypeSafeDiagnosingMatcher.php', + 'Hamcrest\\TypeSafeMatcher' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/TypeSafeMatcher.php', + 'Hamcrest\\Type\\IsArray' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsArray.php', + 'Hamcrest\\Type\\IsBoolean' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsBoolean.php', + 'Hamcrest\\Type\\IsCallable' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsCallable.php', + 'Hamcrest\\Type\\IsDouble' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsDouble.php', + 'Hamcrest\\Type\\IsInteger' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsInteger.php', + 'Hamcrest\\Type\\IsNumeric' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsNumeric.php', + 'Hamcrest\\Type\\IsObject' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsObject.php', + 'Hamcrest\\Type\\IsResource' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsResource.php', + 'Hamcrest\\Type\\IsScalar' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsScalar.php', + 'Hamcrest\\Type\\IsString' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsString.php', + 'Hamcrest\\Util' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Util.php', + 'Hamcrest\\Xml\\HasXPath' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Xml/HasXPath.php', 'PDF417' => $vendorDir . '/tecnickcom/tcpdf/include/barcodes/pdf417.php', + 'PHPUnit\\Exception' => $vendorDir . '/phpunit/phpunit/src/Exception.php', + 'PHPUnit\\Framework\\Assert' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert.php', + 'PHPUnit\\Framework\\AssertionFailedError' => $vendorDir . '/phpunit/phpunit/src/Framework/AssertionFailedError.php', + 'PHPUnit\\Framework\\BaseTestListener' => $vendorDir . '/phpunit/phpunit/src/Framework/BaseTestListener.php', + 'PHPUnit\\Framework\\CodeCoverageException' => $vendorDir . '/phpunit/phpunit/src/Framework/CodeCoverageException.php', + 'PHPUnit\\Framework\\Constraint\\ArrayHasKey' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ArrayHasKey.php', + 'PHPUnit\\Framework\\Constraint\\ArraySubset' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ArraySubset.php', + 'PHPUnit\\Framework\\Constraint\\Attribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Attribute.php', + 'PHPUnit\\Framework\\Constraint\\Callback' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Callback.php', + 'PHPUnit\\Framework\\Constraint\\ClassHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ClassHasAttribute.php', + 'PHPUnit\\Framework\\Constraint\\ClassHasStaticAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ClassHasStaticAttribute.php', + 'PHPUnit\\Framework\\Constraint\\Composite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Composite.php', + 'PHPUnit\\Framework\\Constraint\\Constraint' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Constraint.php', + 'PHPUnit\\Framework\\Constraint\\Count' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Count.php', + 'PHPUnit\\Framework\\Constraint\\DirectoryExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/DirectoryExists.php', + 'PHPUnit\\Framework\\Constraint\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Exception.php', + 'PHPUnit\\Framework\\Constraint\\ExceptionCode' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionCode.php', + 'PHPUnit\\Framework\\Constraint\\ExceptionMessage' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessage.php', + 'PHPUnit\\Framework\\Constraint\\ExceptionMessageRegularExpression' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessageRegularExpression.php', + 'PHPUnit\\Framework\\Constraint\\FileExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/FileExists.php', + 'PHPUnit\\Framework\\Constraint\\GreaterThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/GreaterThan.php', + 'PHPUnit\\Framework\\Constraint\\IsAnything' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsAnything.php', + 'PHPUnit\\Framework\\Constraint\\IsEmpty' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsEmpty.php', + 'PHPUnit\\Framework\\Constraint\\IsEqual' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsEqual.php', + 'PHPUnit\\Framework\\Constraint\\IsFalse' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsFalse.php', + 'PHPUnit\\Framework\\Constraint\\IsFinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsFinite.php', + 'PHPUnit\\Framework\\Constraint\\IsIdentical' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php', + 'PHPUnit\\Framework\\Constraint\\IsInfinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsInfinite.php', + 'PHPUnit\\Framework\\Constraint\\IsInstanceOf' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsInstanceOf.php', + 'PHPUnit\\Framework\\Constraint\\IsJson' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsJson.php', + 'PHPUnit\\Framework\\Constraint\\IsNan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsNan.php', + 'PHPUnit\\Framework\\Constraint\\IsNull' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsNull.php', + 'PHPUnit\\Framework\\Constraint\\IsReadable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsReadable.php', + 'PHPUnit\\Framework\\Constraint\\IsTrue' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsTrue.php', + 'PHPUnit\\Framework\\Constraint\\IsType' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsType.php', + 'PHPUnit\\Framework\\Constraint\\IsWritable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsWritable.php', + 'PHPUnit\\Framework\\Constraint\\JsonMatches' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php', + 'PHPUnit\\Framework\\Constraint\\JsonMatchesErrorMessageProvider' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatchesErrorMessageProvider.php', + 'PHPUnit\\Framework\\Constraint\\LessThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LessThan.php', + 'PHPUnit\\Framework\\Constraint\\LogicalAnd' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalAnd.php', + 'PHPUnit\\Framework\\Constraint\\LogicalNot' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalNot.php', + 'PHPUnit\\Framework\\Constraint\\LogicalOr' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalOr.php', + 'PHPUnit\\Framework\\Constraint\\LogicalXor' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalXor.php', + 'PHPUnit\\Framework\\Constraint\\ObjectHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ObjectHasAttribute.php', + 'PHPUnit\\Framework\\Constraint\\RegularExpression' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/RegularExpression.php', + 'PHPUnit\\Framework\\Constraint\\SameSize' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/SameSize.php', + 'PHPUnit\\Framework\\Constraint\\StringContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringContains.php', + 'PHPUnit\\Framework\\Constraint\\StringEndsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringEndsWith.php', + 'PHPUnit\\Framework\\Constraint\\StringMatchesFormatDescription' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringMatchesFormatDescription.php', + 'PHPUnit\\Framework\\Constraint\\StringStartsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringStartsWith.php', + 'PHPUnit\\Framework\\Constraint\\TraversableContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/TraversableContains.php', + 'PHPUnit\\Framework\\Constraint\\TraversableContainsOnly' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/TraversableContainsOnly.php', + 'PHPUnit\\Framework\\CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/phpunit/src/Framework/CoveredCodeNotExecutedException.php', + 'PHPUnit\\Framework\\DataProviderTestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/DataProviderTestSuite.php', + 'PHPUnit\\Framework\\Error\\Deprecated' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Deprecated.php', + 'PHPUnit\\Framework\\Error\\Error' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Error.php', + 'PHPUnit\\Framework\\Error\\Notice' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Notice.php', + 'PHPUnit\\Framework\\Error\\Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Warning.php', + 'PHPUnit\\Framework\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception.php', + 'PHPUnit\\Framework\\ExceptionWrapper' => $vendorDir . '/phpunit/phpunit/src/Framework/ExceptionWrapper.php', + 'PHPUnit\\Framework\\ExpectationFailedException' => $vendorDir . '/phpunit/phpunit/src/Framework/ExpectationFailedException.php', + 'PHPUnit\\Framework\\IncompleteTest' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTest.php', + 'PHPUnit\\Framework\\IncompleteTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestCase.php', + 'PHPUnit\\Framework\\IncompleteTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestError.php', + 'PHPUnit\\Framework\\InvalidCoversTargetException' => $vendorDir . '/phpunit/phpunit/src/Framework/InvalidCoversTargetException.php', + 'PHPUnit\\Framework\\MissingCoversAnnotationException' => $vendorDir . '/phpunit/phpunit/src/Framework/MissingCoversAnnotationException.php', + 'PHPUnit\\Framework\\MockObject\\BadMethodCallException' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Exception/BadMethodCallException.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\Identity' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/Identity.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\InvocationMocker' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/InvocationMocker.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\Match' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/Match.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\MethodNameMatch' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/MethodNameMatch.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\NamespaceMatch' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/NamespaceMatch.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\ParametersMatch' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/ParametersMatch.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\Stub' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/Stub.php', + 'PHPUnit\\Framework\\MockObject\\Exception' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Exception/Exception.php', + 'PHPUnit\\Framework\\MockObject\\Generator' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Generator.php', + 'PHPUnit\\Framework\\MockObject\\Invocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Invocation/Invocation.php', + 'PHPUnit\\Framework\\MockObject\\InvocationMocker' => $vendorDir . '/phpunit/phpunit-mock-objects/src/InvocationMocker.php', + 'PHPUnit\\Framework\\MockObject\\Invocation\\ObjectInvocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Invocation/ObjectInvocation.php', + 'PHPUnit\\Framework\\MockObject\\Invocation\\StaticInvocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Invocation/StaticInvocation.php', + 'PHPUnit\\Framework\\MockObject\\Invokable' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Invokable.php', + 'PHPUnit\\Framework\\MockObject\\Matcher' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\AnyInvokedCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/AnyInvokedCount.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\AnyParameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/AnyParameters.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\ConsecutiveParameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/ConsecutiveParameters.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\Invocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/Invocation.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtIndex' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtIndex.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtLeastCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtLeastCount.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtLeastOnce' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtLeastOnce.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtMostCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtMostCount.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedCount.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedRecorder' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedRecorder.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\MethodName' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/MethodName.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\Parameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/Parameters.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\StatelessInvocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/StatelessInvocation.php', + 'PHPUnit\\Framework\\MockObject\\MockBuilder' => $vendorDir . '/phpunit/phpunit-mock-objects/src/MockBuilder.php', + 'PHPUnit\\Framework\\MockObject\\MockObject' => $vendorDir . '/phpunit/phpunit-mock-objects/src/ForwardCompatibility/MockObject.php', + 'PHPUnit\\Framework\\MockObject\\RuntimeException' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Exception/RuntimeException.php', + 'PHPUnit\\Framework\\MockObject\\Stub' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ConsecutiveCalls' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ConsecutiveCalls.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\Exception' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/Exception.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\MatcherCollection' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/MatcherCollection.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnArgument' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnArgument.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnCallback' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnCallback.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnReference' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnReference.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnSelf' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnSelf.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnStub' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnStub.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnValueMap' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnValueMap.php', + 'PHPUnit\\Framework\\MockObject\\Verifiable' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Verifiable.php', + 'PHPUnit\\Framework\\OutputError' => $vendorDir . '/phpunit/phpunit/src/Framework/OutputError.php', + 'PHPUnit\\Framework\\RiskyTest' => $vendorDir . '/phpunit/phpunit/src/Framework/RiskyTest.php', + 'PHPUnit\\Framework\\RiskyTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/RiskyTestError.php', + 'PHPUnit\\Framework\\SelfDescribing' => $vendorDir . '/phpunit/phpunit/src/Framework/SelfDescribing.php', + 'PHPUnit\\Framework\\SkippedTest' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTest.php', + 'PHPUnit\\Framework\\SkippedTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestCase.php', + 'PHPUnit\\Framework\\SkippedTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestError.php', + 'PHPUnit\\Framework\\SkippedTestSuiteError' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestSuiteError.php', + 'PHPUnit\\Framework\\SyntheticError' => $vendorDir . '/phpunit/phpunit/src/Framework/SyntheticError.php', + 'PHPUnit\\Framework\\Test' => $vendorDir . '/phpunit/phpunit/src/Framework/Test.php', + 'PHPUnit\\Framework\\TestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/TestCase.php', + 'PHPUnit\\Framework\\TestFailure' => $vendorDir . '/phpunit/phpunit/src/Framework/TestFailure.php', + 'PHPUnit\\Framework\\TestListener' => $vendorDir . '/phpunit/phpunit/src/Framework/TestListener.php', + 'PHPUnit\\Framework\\TestListenerDefaultImplementation' => $vendorDir . '/phpunit/phpunit/src/Framework/TestListenerDefaultImplementation.php', + 'PHPUnit\\Framework\\TestResult' => $vendorDir . '/phpunit/phpunit/src/Framework/TestResult.php', + 'PHPUnit\\Framework\\TestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuite.php', + 'PHPUnit\\Framework\\TestSuiteIterator' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuiteIterator.php', + 'PHPUnit\\Framework\\UnintentionallyCoveredCodeError' => $vendorDir . '/phpunit/phpunit/src/Framework/UnintentionallyCoveredCodeError.php', + 'PHPUnit\\Framework\\Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Warning.php', + 'PHPUnit\\Framework\\WarningTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/WarningTestCase.php', + 'PHPUnit\\Runner\\BaseTestRunner' => $vendorDir . '/phpunit/phpunit/src/Runner/BaseTestRunner.php', + 'PHPUnit\\Runner\\Exception' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception.php', + 'PHPUnit\\Runner\\Filter\\ExcludeGroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php', + 'PHPUnit\\Runner\\Filter\\Factory' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Factory.php', + 'PHPUnit\\Runner\\Filter\\GroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php', + 'PHPUnit\\Runner\\Filter\\IncludeGroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php', + 'PHPUnit\\Runner\\Filter\\NameFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php', + 'PHPUnit\\Runner\\PhptTestCase' => $vendorDir . '/phpunit/phpunit/src/Runner/PhptTestCase.php', + 'PHPUnit\\Runner\\StandardTestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php', + 'PHPUnit\\Runner\\TestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/TestSuiteLoader.php', + 'PHPUnit\\Runner\\Version' => $vendorDir . '/phpunit/phpunit/src/Runner/Version.php', + 'PHPUnit\\TextUI\\Command' => $vendorDir . '/phpunit/phpunit/src/TextUI/Command.php', + 'PHPUnit\\TextUI\\ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/TextUI/ResultPrinter.php', + 'PHPUnit\\TextUI\\TestRunner' => $vendorDir . '/phpunit/phpunit/src/TextUI/TestRunner.php', + 'PHPUnit\\Util\\Blacklist' => $vendorDir . '/phpunit/phpunit/src/Util/Blacklist.php', + 'PHPUnit\\Util\\Configuration' => $vendorDir . '/phpunit/phpunit/src/Util/Configuration.php', + 'PHPUnit\\Util\\ConfigurationGenerator' => $vendorDir . '/phpunit/phpunit/src/Util/ConfigurationGenerator.php', + 'PHPUnit\\Util\\ErrorHandler' => $vendorDir . '/phpunit/phpunit/src/Util/ErrorHandler.php', + 'PHPUnit\\Util\\Fileloader' => $vendorDir . '/phpunit/phpunit/src/Util/Fileloader.php', + 'PHPUnit\\Util\\Filesystem' => $vendorDir . '/phpunit/phpunit/src/Util/Filesystem.php', + 'PHPUnit\\Util\\Filter' => $vendorDir . '/phpunit/phpunit/src/Util/Filter.php', + 'PHPUnit\\Util\\Getopt' => $vendorDir . '/phpunit/phpunit/src/Util/Getopt.php', + 'PHPUnit\\Util\\GlobalState' => $vendorDir . '/phpunit/phpunit/src/Util/GlobalState.php', + 'PHPUnit\\Util\\InvalidArgumentHelper' => $vendorDir . '/phpunit/phpunit/src/Util/InvalidArgumentHelper.php', + 'PHPUnit\\Util\\Json' => $vendorDir . '/phpunit/phpunit/src/Util/Json.php', + 'PHPUnit\\Util\\Log\\JUnit' => $vendorDir . '/phpunit/phpunit/src/Util/Log/JUnit.php', + 'PHPUnit\\Util\\Log\\TeamCity' => $vendorDir . '/phpunit/phpunit/src/Util/Log/TeamCity.php', + 'PHPUnit\\Util\\PHP\\AbstractPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/AbstractPhpProcess.php', + 'PHPUnit\\Util\\PHP\\DefaultPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/DefaultPhpProcess.php', + 'PHPUnit\\Util\\PHP\\WindowsPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/WindowsPhpProcess.php', + 'PHPUnit\\Util\\Printer' => $vendorDir . '/phpunit/phpunit/src/Util/Printer.php', + 'PHPUnit\\Util\\RegularExpression' => $vendorDir . '/phpunit/phpunit/src/Util/RegularExpression.php', + 'PHPUnit\\Util\\Test' => $vendorDir . '/phpunit/phpunit/src/Util/Test.php', + 'PHPUnit\\Util\\TestDox\\HtmlResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/HtmlResultPrinter.php', + 'PHPUnit\\Util\\TestDox\\NamePrettifier' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php', + 'PHPUnit\\Util\\TestDox\\ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php', + 'PHPUnit\\Util\\TestDox\\TextResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/TextResultPrinter.php', + 'PHPUnit\\Util\\TestDox\\XmlResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/XmlResultPrinter.php', + 'PHPUnit\\Util\\TextTestListRenderer' => $vendorDir . '/phpunit/phpunit/src/Util/TextTestListRenderer.php', + 'PHPUnit\\Util\\Type' => $vendorDir . '/phpunit/phpunit/src/Util/Type.php', + 'PHPUnit\\Util\\Xml' => $vendorDir . '/phpunit/phpunit/src/Util/Xml.php', + 'PHPUnit\\Util\\XmlTestListRenderer' => $vendorDir . '/phpunit/phpunit/src/Util/XmlTestListRenderer.php', + 'PHPUnit_Framework_MockObject_MockObject' => $vendorDir . '/phpunit/phpunit-mock-objects/src/MockObject.php', + 'PHP_Timer' => $vendorDir . '/phpunit/php-timer/src/Timer.php', + 'PHP_Token' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_TokenWithScope' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_TokenWithScopeAndVisibility' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ABSTRACT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AMPERSAND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AND_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ARRAY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ARRAY_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ASYNC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AWAIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BACKTICK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BAD_CHARACTER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BOOLEAN_AND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BOOLEAN_OR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BOOL_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BREAK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CALLABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CARET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CASE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CATCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CHARACTER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLASS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLASS_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLASS_NAME_CONSTANT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLONE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLOSE_BRACKET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLOSE_CURLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLOSE_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLOSE_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COALESCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COMMA' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COMPILER_HALT_OFFSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CONCAT_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CONST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CONSTANT_ENCAPSED_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CONTINUE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CURLY_OPEN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DEC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DECLARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DEFAULT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DIR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DIV' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DIV_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DNUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOC_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOLLAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOLLAR_OPEN_CURLY_BRACES' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOUBLE_ARROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOUBLE_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOUBLE_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOUBLE_QUOTES' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ECHO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ELLIPSIS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ELSE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ELSEIF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EMPTY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENCAPSED_AND_WHITESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDDECLARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDFOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDFOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDIF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDSWITCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDWHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_END_HEREDOC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENUM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EQUALS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EVAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EXCLAMATION_MARK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EXIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EXTENDS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FINAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FINALLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FUNC_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_GLOBAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_GOTO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_HALT_COMPILER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IMPLEMENTS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INCLUDE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INCLUDE_ONCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INLINE_HTML' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INSTANCEOF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INSTEADOF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INTERFACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INT_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ISSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_GREATER_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_IDENTICAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_NOT_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_NOT_IDENTICAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_SMALLER_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_Includes' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_JOIN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LAMBDA_ARROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LAMBDA_CP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LAMBDA_OP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LINE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LIST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LNUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LOGICAL_AND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LOGICAL_OR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LOGICAL_XOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_METHOD_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MINUS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MINUS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MOD_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MULT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MUL_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NAMESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NEW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NS_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NS_SEPARATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NULLSAFE_OBJECT_OPERATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NUM_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OBJECT_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OBJECT_OPERATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ONUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_BRACKET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_CURLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_TAG_WITH_ECHO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PAAMAYIM_NEKUDOTAYIM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PERCENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PIPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PLUS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PLUS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_POW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_POW_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PRINT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PRIVATE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PROTECTED' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PUBLIC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_QUESTION_MARK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_REQUIRE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_REQUIRE_ONCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_RETURN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SEMICOLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SHAPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SL_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SPACESHIP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_START_HEREDOC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_STATIC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_STRING_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_STRING_VARNAME' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SUPER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SWITCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_Stream' => $vendorDir . '/phpunit/php-token-stream/src/Token/Stream.php', + 'PHP_Token_Stream_CachingFactory' => $vendorDir . '/phpunit/php-token-stream/src/Token/Stream/CachingFactory.php', + 'PHP_Token_THROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TILDE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TRAIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TRAIT_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TRY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TYPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TYPELIST_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TYPELIST_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_UNSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_UNSET_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_USE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_USE_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_VAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_VARIABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_WHERE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_WHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_WHITESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_ATTRIBUTE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_CATEGORY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_CATEGORY_LABEL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_CHILDREN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_LABEL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_REQUIRED' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_TAG_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_TAG_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_TEXT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XOR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_YIELD' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_YIELD_FROM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'ParseError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/ParseError.php', + 'PharIo\\Manifest\\Application' => $vendorDir . '/phar-io/manifest/src/values/Application.php', + 'PharIo\\Manifest\\ApplicationName' => $vendorDir . '/phar-io/manifest/src/values/ApplicationName.php', + 'PharIo\\Manifest\\Author' => $vendorDir . '/phar-io/manifest/src/values/Author.php', + 'PharIo\\Manifest\\AuthorCollection' => $vendorDir . '/phar-io/manifest/src/values/AuthorCollection.php', + 'PharIo\\Manifest\\AuthorCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/AuthorCollectionIterator.php', + 'PharIo\\Manifest\\AuthorElement' => $vendorDir . '/phar-io/manifest/src/xml/AuthorElement.php', + 'PharIo\\Manifest\\AuthorElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/AuthorElementCollection.php', + 'PharIo\\Manifest\\BundledComponent' => $vendorDir . '/phar-io/manifest/src/values/BundledComponent.php', + 'PharIo\\Manifest\\BundledComponentCollection' => $vendorDir . '/phar-io/manifest/src/values/BundledComponentCollection.php', + 'PharIo\\Manifest\\BundledComponentCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/BundledComponentCollectionIterator.php', + 'PharIo\\Manifest\\BundlesElement' => $vendorDir . '/phar-io/manifest/src/xml/BundlesElement.php', + 'PharIo\\Manifest\\ComponentElement' => $vendorDir . '/phar-io/manifest/src/xml/ComponentElement.php', + 'PharIo\\Manifest\\ComponentElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ComponentElementCollection.php', + 'PharIo\\Manifest\\ContainsElement' => $vendorDir . '/phar-io/manifest/src/xml/ContainsElement.php', + 'PharIo\\Manifest\\CopyrightElement' => $vendorDir . '/phar-io/manifest/src/xml/CopyrightElement.php', + 'PharIo\\Manifest\\CopyrightInformation' => $vendorDir . '/phar-io/manifest/src/values/CopyrightInformation.php', + 'PharIo\\Manifest\\ElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ElementCollection.php', + 'PharIo\\Manifest\\Email' => $vendorDir . '/phar-io/manifest/src/values/Email.php', + 'PharIo\\Manifest\\Exception' => $vendorDir . '/phar-io/manifest/src/exceptions/Exception.php', + 'PharIo\\Manifest\\ExtElement' => $vendorDir . '/phar-io/manifest/src/xml/ExtElement.php', + 'PharIo\\Manifest\\ExtElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ExtElementCollection.php', + 'PharIo\\Manifest\\Extension' => $vendorDir . '/phar-io/manifest/src/values/Extension.php', + 'PharIo\\Manifest\\ExtensionElement' => $vendorDir . '/phar-io/manifest/src/xml/ExtensionElement.php', + 'PharIo\\Manifest\\InvalidApplicationNameException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php', + 'PharIo\\Manifest\\InvalidEmailException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidEmailException.php', + 'PharIo\\Manifest\\InvalidUrlException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidUrlException.php', + 'PharIo\\Manifest\\Library' => $vendorDir . '/phar-io/manifest/src/values/Library.php', + 'PharIo\\Manifest\\License' => $vendorDir . '/phar-io/manifest/src/values/License.php', + 'PharIo\\Manifest\\LicenseElement' => $vendorDir . '/phar-io/manifest/src/xml/LicenseElement.php', + 'PharIo\\Manifest\\Manifest' => $vendorDir . '/phar-io/manifest/src/values/Manifest.php', + 'PharIo\\Manifest\\ManifestDocument' => $vendorDir . '/phar-io/manifest/src/xml/ManifestDocument.php', + 'PharIo\\Manifest\\ManifestDocumentException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestDocumentException.php', + 'PharIo\\Manifest\\ManifestDocumentLoadingException' => $vendorDir . '/phar-io/manifest/src/xml/ManifestDocumentLoadingException.php', + 'PharIo\\Manifest\\ManifestDocumentMapper' => $vendorDir . '/phar-io/manifest/src/ManifestDocumentMapper.php', + 'PharIo\\Manifest\\ManifestDocumentMapperException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php', + 'PharIo\\Manifest\\ManifestElement' => $vendorDir . '/phar-io/manifest/src/xml/ManifestElement.php', + 'PharIo\\Manifest\\ManifestElementException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestElementException.php', + 'PharIo\\Manifest\\ManifestLoader' => $vendorDir . '/phar-io/manifest/src/ManifestLoader.php', + 'PharIo\\Manifest\\ManifestLoaderException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestLoaderException.php', + 'PharIo\\Manifest\\ManifestSerializer' => $vendorDir . '/phar-io/manifest/src/ManifestSerializer.php', + 'PharIo\\Manifest\\PhpElement' => $vendorDir . '/phar-io/manifest/src/xml/PhpElement.php', + 'PharIo\\Manifest\\PhpExtensionRequirement' => $vendorDir . '/phar-io/manifest/src/values/PhpExtensionRequirement.php', + 'PharIo\\Manifest\\PhpVersionRequirement' => $vendorDir . '/phar-io/manifest/src/values/PhpVersionRequirement.php', + 'PharIo\\Manifest\\Requirement' => $vendorDir . '/phar-io/manifest/src/values/Requirement.php', + 'PharIo\\Manifest\\RequirementCollection' => $vendorDir . '/phar-io/manifest/src/values/RequirementCollection.php', + 'PharIo\\Manifest\\RequirementCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/RequirementCollectionIterator.php', + 'PharIo\\Manifest\\RequiresElement' => $vendorDir . '/phar-io/manifest/src/xml/RequiresElement.php', + 'PharIo\\Manifest\\Type' => $vendorDir . '/phar-io/manifest/src/values/Type.php', + 'PharIo\\Manifest\\Url' => $vendorDir . '/phar-io/manifest/src/values/Url.php', + 'PharIo\\Version\\AbstractVersionConstraint' => $vendorDir . '/phar-io/version/src/AbstractVersionConstraint.php', + 'PharIo\\Version\\AndVersionConstraintGroup' => $vendorDir . '/phar-io/version/src/AndVersionConstraintGroup.php', + 'PharIo\\Version\\AnyVersionConstraint' => $vendorDir . '/phar-io/version/src/AnyVersionConstraint.php', + 'PharIo\\Version\\ExactVersionConstraint' => $vendorDir . '/phar-io/version/src/ExactVersionConstraint.php', + 'PharIo\\Version\\Exception' => $vendorDir . '/phar-io/version/src/Exception.php', + 'PharIo\\Version\\GreaterThanOrEqualToVersionConstraint' => $vendorDir . '/phar-io/version/src/GreaterThanOrEqualToVersionConstraint.php', + 'PharIo\\Version\\InvalidVersionException' => $vendorDir . '/phar-io/version/src/InvalidVersionException.php', + 'PharIo\\Version\\OrVersionConstraintGroup' => $vendorDir . '/phar-io/version/src/OrVersionConstraintGroup.php', + 'PharIo\\Version\\PreReleaseSuffix' => $vendorDir . '/phar-io/version/src/PreReleaseSuffix.php', + 'PharIo\\Version\\SpecificMajorAndMinorVersionConstraint' => $vendorDir . '/phar-io/version/src/SpecificMajorAndMinorVersionConstraint.php', + 'PharIo\\Version\\SpecificMajorVersionConstraint' => $vendorDir . '/phar-io/version/src/SpecificMajorVersionConstraint.php', + 'PharIo\\Version\\UnsupportedVersionConstraintException' => $vendorDir . '/phar-io/version/src/UnsupportedVersionConstraintException.php', + 'PharIo\\Version\\Version' => $vendorDir . '/phar-io/version/src/Version.php', + 'PharIo\\Version\\VersionConstraint' => $vendorDir . '/phar-io/version/src/VersionConstraint.php', + 'PharIo\\Version\\VersionConstraintParser' => $vendorDir . '/phar-io/version/src/VersionConstraintParser.php', + 'PharIo\\Version\\VersionConstraintValue' => $vendorDir . '/phar-io/version/src/VersionConstraintValue.php', + 'PharIo\\Version\\VersionNumber' => $vendorDir . '/phar-io/version/src/VersionNumber.php', 'QRcode' => $vendorDir . '/tecnickcom/tcpdf/include/barcodes/qrcode.php', + 'SebastianBergmann\\CodeCoverage\\CodeCoverage' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage.php', + 'SebastianBergmann\\CodeCoverage\\CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php', + 'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Driver.php', + 'SebastianBergmann\\CodeCoverage\\Driver\\HHVM' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/HHVM.php', + 'SebastianBergmann\\CodeCoverage\\Driver\\PHPDBG' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/PHPDBG.php', + 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Xdebug.php', + 'SebastianBergmann\\CodeCoverage\\Exception' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/Exception.php', + 'SebastianBergmann\\CodeCoverage\\Filter' => $vendorDir . '/phpunit/php-code-coverage/src/Filter.php', + 'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php', + 'SebastianBergmann\\CodeCoverage\\MissingCoversAnnotationException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/MissingCoversAnnotationException.php', + 'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => $vendorDir . '/phpunit/php-code-coverage/src/Node/AbstractNode.php', + 'SebastianBergmann\\CodeCoverage\\Node\\Builder' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Builder.php', + 'SebastianBergmann\\CodeCoverage\\Node\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Directory.php', + 'SebastianBergmann\\CodeCoverage\\Node\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Node/File.php', + 'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Iterator.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Clover' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Clover.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Crap4j.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Facade.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php', + 'SebastianBergmann\\CodeCoverage\\Report\\PHP' => $vendorDir . '/phpunit/php-code-coverage/src/Report/PHP.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Text' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Text.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/File.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Method.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Node.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Project.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Report.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Source.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php', + 'SebastianBergmann\\CodeCoverage\\RuntimeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/RuntimeException.php', + 'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php', + 'SebastianBergmann\\CodeCoverage\\Util' => $vendorDir . '/phpunit/php-code-coverage/src/Util.php', + 'SebastianBergmann\\CodeCoverage\\Version' => $vendorDir . '/phpunit/php-code-coverage/src/Version.php', + 'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => $vendorDir . '/sebastian/code-unit-reverse-lookup/src/Wizard.php', + 'SebastianBergmann\\Comparator\\ArrayComparator' => $vendorDir . '/sebastian/comparator/src/ArrayComparator.php', + 'SebastianBergmann\\Comparator\\Comparator' => $vendorDir . '/sebastian/comparator/src/Comparator.php', + 'SebastianBergmann\\Comparator\\ComparisonFailure' => $vendorDir . '/sebastian/comparator/src/ComparisonFailure.php', + 'SebastianBergmann\\Comparator\\DOMNodeComparator' => $vendorDir . '/sebastian/comparator/src/DOMNodeComparator.php', + 'SebastianBergmann\\Comparator\\DateTimeComparator' => $vendorDir . '/sebastian/comparator/src/DateTimeComparator.php', + 'SebastianBergmann\\Comparator\\DoubleComparator' => $vendorDir . '/sebastian/comparator/src/DoubleComparator.php', + 'SebastianBergmann\\Comparator\\ExceptionComparator' => $vendorDir . '/sebastian/comparator/src/ExceptionComparator.php', + 'SebastianBergmann\\Comparator\\Factory' => $vendorDir . '/sebastian/comparator/src/Factory.php', + 'SebastianBergmann\\Comparator\\MockObjectComparator' => $vendorDir . '/sebastian/comparator/src/MockObjectComparator.php', + 'SebastianBergmann\\Comparator\\NumericComparator' => $vendorDir . '/sebastian/comparator/src/NumericComparator.php', + 'SebastianBergmann\\Comparator\\ObjectComparator' => $vendorDir . '/sebastian/comparator/src/ObjectComparator.php', + 'SebastianBergmann\\Comparator\\ResourceComparator' => $vendorDir . '/sebastian/comparator/src/ResourceComparator.php', + 'SebastianBergmann\\Comparator\\ScalarComparator' => $vendorDir . '/sebastian/comparator/src/ScalarComparator.php', + 'SebastianBergmann\\Comparator\\SplObjectStorageComparator' => $vendorDir . '/sebastian/comparator/src/SplObjectStorageComparator.php', + 'SebastianBergmann\\Comparator\\TypeComparator' => $vendorDir . '/sebastian/comparator/src/TypeComparator.php', + 'SebastianBergmann\\Diff\\Chunk' => $vendorDir . '/sebastian/diff/src/Chunk.php', + 'SebastianBergmann\\Diff\\Diff' => $vendorDir . '/sebastian/diff/src/Diff.php', + 'SebastianBergmann\\Diff\\Differ' => $vendorDir . '/sebastian/diff/src/Differ.php', + 'SebastianBergmann\\Diff\\Exception' => $vendorDir . '/sebastian/diff/src/Exception/Exception.php', + 'SebastianBergmann\\Diff\\InvalidArgumentException' => $vendorDir . '/sebastian/diff/src/Exception/InvalidArgumentException.php', + 'SebastianBergmann\\Diff\\Line' => $vendorDir . '/sebastian/diff/src/Line.php', + 'SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/LongestCommonSubsequenceCalculator.php', + 'SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php', + 'SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php', + 'SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php', + 'SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => $vendorDir . '/sebastian/diff/src/Output/DiffOutputBuilderInterface.php', + 'SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php', + 'SebastianBergmann\\Diff\\Parser' => $vendorDir . '/sebastian/diff/src/Parser.php', + 'SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php', + 'SebastianBergmann\\Environment\\Console' => $vendorDir . '/sebastian/environment/src/Console.php', + 'SebastianBergmann\\Environment\\OperatingSystem' => $vendorDir . '/sebastian/environment/src/OperatingSystem.php', + 'SebastianBergmann\\Environment\\Runtime' => $vendorDir . '/sebastian/environment/src/Runtime.php', + 'SebastianBergmann\\Exporter\\Exporter' => $vendorDir . '/sebastian/exporter/src/Exporter.php', + 'SebastianBergmann\\GlobalState\\Blacklist' => $vendorDir . '/sebastian/global-state/src/Blacklist.php', + 'SebastianBergmann\\GlobalState\\CodeExporter' => $vendorDir . '/sebastian/global-state/src/CodeExporter.php', + 'SebastianBergmann\\GlobalState\\Exception' => $vendorDir . '/sebastian/global-state/src/exceptions/Exception.php', + 'SebastianBergmann\\GlobalState\\Restorer' => $vendorDir . '/sebastian/global-state/src/Restorer.php', + 'SebastianBergmann\\GlobalState\\RuntimeException' => $vendorDir . '/sebastian/global-state/src/exceptions/RuntimeException.php', + 'SebastianBergmann\\GlobalState\\Snapshot' => $vendorDir . '/sebastian/global-state/src/Snapshot.php', + 'SebastianBergmann\\ObjectEnumerator\\Enumerator' => $vendorDir . '/sebastian/object-enumerator/src/Enumerator.php', + 'SebastianBergmann\\ObjectEnumerator\\Exception' => $vendorDir . '/sebastian/object-enumerator/src/Exception.php', + 'SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => $vendorDir . '/sebastian/object-enumerator/src/InvalidArgumentException.php', + 'SebastianBergmann\\ObjectReflector\\Exception' => $vendorDir . '/sebastian/object-reflector/src/Exception.php', + 'SebastianBergmann\\ObjectReflector\\InvalidArgumentException' => $vendorDir . '/sebastian/object-reflector/src/InvalidArgumentException.php', + 'SebastianBergmann\\ObjectReflector\\ObjectReflector' => $vendorDir . '/sebastian/object-reflector/src/ObjectReflector.php', + 'SebastianBergmann\\RecursionContext\\Context' => $vendorDir . '/sebastian/recursion-context/src/Context.php', + 'SebastianBergmann\\RecursionContext\\Exception' => $vendorDir . '/sebastian/recursion-context/src/Exception.php', + 'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => $vendorDir . '/sebastian/recursion-context/src/InvalidArgumentException.php', + 'SebastianBergmann\\ResourceOperations\\ResourceOperations' => $vendorDir . '/sebastian/resource-operations/src/ResourceOperations.php', + 'SebastianBergmann\\Version' => $vendorDir . '/sebastian/version/src/Version.php', 'SessionUpdateTimestampHandlerInterface' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php', 'TCPDF' => $vendorDir . '/tecnickcom/tcpdf/tcpdf.php', 'TCPDF2DBarcode' => $vendorDir . '/tecnickcom/tcpdf/tcpdf_barcodes_2d.php', @@ -26,5 +628,14 @@ return array( 'TCPDF_IMPORT' => $vendorDir . '/tecnickcom/tcpdf/tcpdf_import.php', 'TCPDF_PARSER' => $vendorDir . '/tecnickcom/tcpdf/tcpdf_parser.php', 'TCPDF_STATIC' => $vendorDir . '/tecnickcom/tcpdf/include/tcpdf_static.php', + 'Text_Template' => $vendorDir . '/phpunit/php-text-template/src/Template.php', + 'TheSeer\\Tokenizer\\Exception' => $vendorDir . '/theseer/tokenizer/src/Exception.php', + 'TheSeer\\Tokenizer\\NamespaceUri' => $vendorDir . '/theseer/tokenizer/src/NamespaceUri.php', + 'TheSeer\\Tokenizer\\NamespaceUriException' => $vendorDir . '/theseer/tokenizer/src/NamespaceUriException.php', + 'TheSeer\\Tokenizer\\Token' => $vendorDir . '/theseer/tokenizer/src/Token.php', + 'TheSeer\\Tokenizer\\TokenCollection' => $vendorDir . '/theseer/tokenizer/src/TokenCollection.php', + 'TheSeer\\Tokenizer\\TokenCollectionException' => $vendorDir . '/theseer/tokenizer/src/TokenCollectionException.php', + 'TheSeer\\Tokenizer\\Tokenizer' => $vendorDir . '/theseer/tokenizer/src/Tokenizer.php', + 'TheSeer\\Tokenizer\\XMLSerializer' => $vendorDir . '/theseer/tokenizer/src/XMLSerializer.php', 'TypeError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/TypeError.php', ); diff --git a/vendor/composer/autoload_files.php b/vendor/composer/autoload_files.php index 4975c4ba9d..a92366c708 100644 --- a/vendor/composer/autoload_files.php +++ b/vendor/composer/autoload_files.php @@ -6,14 +6,16 @@ $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( - '32dcc8afd4335739640db7d200c1971d' => $vendorDir . '/symfony/polyfill-apcu/bootstrap.php', - '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php', '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', + '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php', + '32dcc8afd4335739640db7d200c1971d' => $vendorDir . '/symfony/polyfill-apcu/bootstrap.php', + '667aeda72477189d0494fecd327c3641' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php', '023d27dca8066ef29e6739335ea73bad' => $vendorDir . '/symfony/polyfill-php70/bootstrap.php', 'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php', 'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php', - 'b3134b0e457069f7362d2c9cf91628c7' => $vendorDir . '/fisharebest/ext-calendar/src/shims.php', '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php', + '6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', + 'b3134b0e457069f7362d2c9cf91628c7' => $vendorDir . '/fisharebest/ext-calendar/src/shims.php', '2c102faa651ef8ea5874edb585946bce' => $vendorDir . '/swiftmailer/swiftmailer/lib/swift_required.php', 'e277be14c90068cf94faed2c43dbe6d8' => $vendorDir . '/symfony/polyfill-php71/bootstrap.php', '25072dd6e2470089de65ae7bf11d3109' => $vendorDir . '/symfony/polyfill-php72/bootstrap.php', diff --git a/vendor/composer/autoload_namespaces.php b/vendor/composer/autoload_namespaces.php index b7fc0125db..e652f478f1 100644 --- a/vendor/composer/autoload_namespaces.php +++ b/vendor/composer/autoload_namespaces.php @@ -6,4 +6,6 @@ $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( + 'Prophecy\\' => array($vendorDir . '/phpspec/prophecy/src'), + 'Mockery' => array($vendorDir . '/mockery/mockery/library'), ); diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php index 205030bfb5..94828d8844 100644 --- a/vendor/composer/autoload_psr4.php +++ b/vendor/composer/autoload_psr4.php @@ -6,25 +6,34 @@ $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( + 'phpDocumentor\\Reflection\\' => array($vendorDir . '/phpdocumentor/reflection-common/src', $vendorDir . '/phpdocumentor/type-resolver/src', $vendorDir . '/phpdocumentor/reflection-docblock/src'), 'Whoops\\' => array($vendorDir . '/filp/whoops/src/Whoops'), 'Webuni\\CommonMark\\TableExtension\\' => array($vendorDir . '/webuni/commonmark-table-extension/src'), + 'Webmozart\\Assert\\' => array($vendorDir . '/webmozart/assert/src'), 'Symfony\\Polyfill\\Php72\\' => array($vendorDir . '/symfony/polyfill-php72'), 'Symfony\\Polyfill\\Php71\\' => array($vendorDir . '/symfony/polyfill-php71'), 'Symfony\\Polyfill\\Php70\\' => array($vendorDir . '/symfony/polyfill-php70'), 'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'), 'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'), 'Symfony\\Polyfill\\Apcu\\' => array($vendorDir . '/symfony/polyfill-apcu'), + 'Symfony\\Component\\Yaml\\' => array($vendorDir . '/symfony/yaml'), + 'Symfony\\Component\\VarDumper\\' => array($vendorDir . '/symfony/var-dumper'), + 'Symfony\\Component\\Stopwatch\\' => array($vendorDir . '/symfony/stopwatch'), 'Symfony\\Component\\HttpKernel\\' => array($vendorDir . '/symfony/http-kernel'), 'Symfony\\Component\\HttpFoundation\\' => array($vendorDir . '/symfony/http-foundation'), + 'Symfony\\Component\\Filesystem\\' => array($vendorDir . '/symfony/filesystem'), 'Symfony\\Component\\ExpressionLanguage\\' => array($vendorDir . '/symfony/expression-language'), 'Symfony\\Component\\EventDispatcher\\' => array($vendorDir . '/symfony/event-dispatcher'), 'Symfony\\Component\\Debug\\' => array($vendorDir . '/symfony/debug'), + 'Symfony\\Component\\Console\\' => array($vendorDir . '/symfony/console'), + 'Symfony\\Component\\Config\\' => array($vendorDir . '/symfony/config'), 'Symfony\\Component\\Cache\\' => array($vendorDir . '/symfony/cache'), 'Ramsey\\Uuid\\' => array($vendorDir . '/ramsey/uuid/src'), 'Psr\\SimpleCache\\' => array($vendorDir . '/psr/simple-cache/src'), 'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'), 'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src'), 'Psr\\Cache\\' => array($vendorDir . '/psr/cache/src'), + 'PhpCoveralls\\' => array($vendorDir . '/php-coveralls/php-coveralls/src'), 'League\\Glide\\' => array($vendorDir . '/league/glide/src'), 'League\\Flysystem\\ZipArchive\\' => array($vendorDir . '/league/flysystem-ziparchive/src'), 'League\\Flysystem\\' => array($vendorDir . '/league/flysystem/src'), @@ -37,4 +46,7 @@ return array( 'Fisharebest\\Localization\\' => array($vendorDir . '/fisharebest/localization/src'), 'Fisharebest\\ExtCalendar\\' => array($vendorDir . '/fisharebest/ext-calendar/src'), 'Fisharebest\\Algorithm\\' => array($vendorDir . '/fisharebest/algorithm/src'), + 'Doctrine\\Instantiator\\' => array($vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator'), + 'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'), + 'DebugBar\\' => array($vendorDir . '/maximebf/debugbar/src/DebugBar'), ); diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index ecf1c8ccd9..b28930c060 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -7,14 +7,16 @@ namespace Composer\Autoload; class ComposerStaticInit3da29173c262c589b273f6106eae3544 { public static $files = array ( - '32dcc8afd4335739640db7d200c1971d' => __DIR__ . '/..' . '/symfony/polyfill-apcu/bootstrap.php', - '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php', '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', + '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php', + '32dcc8afd4335739640db7d200c1971d' => __DIR__ . '/..' . '/symfony/polyfill-apcu/bootstrap.php', + '667aeda72477189d0494fecd327c3641' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php', '023d27dca8066ef29e6739335ea73bad' => __DIR__ . '/..' . '/symfony/polyfill-php70/bootstrap.php', 'a0edc8309cc5e1d60e3047b5df6b7052' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/functions_include.php', 'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php', - 'b3134b0e457069f7362d2c9cf91628c7' => __DIR__ . '/..' . '/fisharebest/ext-calendar/src/shims.php', '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php', + '6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', + 'b3134b0e457069f7362d2c9cf91628c7' => __DIR__ . '/..' . '/fisharebest/ext-calendar/src/shims.php', '2c102faa651ef8ea5874edb585946bce' => __DIR__ . '/..' . '/swiftmailer/swiftmailer/lib/swift_required.php', 'e277be14c90068cf94faed2c43dbe6d8' => __DIR__ . '/..' . '/symfony/polyfill-php71/bootstrap.php', '25072dd6e2470089de65ae7bf11d3109' => __DIR__ . '/..' . '/symfony/polyfill-php72/bootstrap.php', @@ -22,10 +24,15 @@ class ComposerStaticInit3da29173c262c589b273f6106eae3544 ); public static $prefixLengthsPsr4 = array ( + 'p' => + array ( + 'phpDocumentor\\Reflection\\' => 25, + ), 'W' => array ( 'Whoops\\' => 7, 'Webuni\\CommonMark\\TableExtension\\' => 33, + 'Webmozart\\Assert\\' => 17, ), 'S' => array ( @@ -35,11 +42,17 @@ class ComposerStaticInit3da29173c262c589b273f6106eae3544 'Symfony\\Polyfill\\Mbstring\\' => 26, 'Symfony\\Polyfill\\Ctype\\' => 23, 'Symfony\\Polyfill\\Apcu\\' => 22, + 'Symfony\\Component\\Yaml\\' => 23, + 'Symfony\\Component\\VarDumper\\' => 28, + 'Symfony\\Component\\Stopwatch\\' => 28, 'Symfony\\Component\\HttpKernel\\' => 29, 'Symfony\\Component\\HttpFoundation\\' => 33, + 'Symfony\\Component\\Filesystem\\' => 29, 'Symfony\\Component\\ExpressionLanguage\\' => 37, 'Symfony\\Component\\EventDispatcher\\' => 34, 'Symfony\\Component\\Debug\\' => 24, + 'Symfony\\Component\\Console\\' => 26, + 'Symfony\\Component\\Config\\' => 25, 'Symfony\\Component\\Cache\\' => 24, ), 'R' => @@ -52,6 +65,7 @@ class ComposerStaticInit3da29173c262c589b273f6106eae3544 'Psr\\Log\\' => 8, 'Psr\\Http\\Message\\' => 17, 'Psr\\Cache\\' => 10, + 'PhpCoveralls\\' => 13, ), 'L' => array ( @@ -77,9 +91,21 @@ class ComposerStaticInit3da29173c262c589b273f6106eae3544 'Fisharebest\\ExtCalendar\\' => 24, 'Fisharebest\\Algorithm\\' => 22, ), + 'D' => + array ( + 'Doctrine\\Instantiator\\' => 22, + 'DeepCopy\\' => 9, + 'DebugBar\\' => 9, + ), ); public static $prefixDirsPsr4 = array ( + 'phpDocumentor\\Reflection\\' => + array ( + 0 => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src', + 1 => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src', + 2 => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src', + ), 'Whoops\\' => array ( 0 => __DIR__ . '/..' . '/filp/whoops/src/Whoops', @@ -88,6 +114,10 @@ class ComposerStaticInit3da29173c262c589b273f6106eae3544 array ( 0 => __DIR__ . '/..' . '/webuni/commonmark-table-extension/src', ), + 'Webmozart\\Assert\\' => + array ( + 0 => __DIR__ . '/..' . '/webmozart/assert/src', + ), 'Symfony\\Polyfill\\Php72\\' => array ( 0 => __DIR__ . '/..' . '/symfony/polyfill-php72', @@ -112,6 +142,18 @@ class ComposerStaticInit3da29173c262c589b273f6106eae3544 array ( 0 => __DIR__ . '/..' . '/symfony/polyfill-apcu', ), + 'Symfony\\Component\\Yaml\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/yaml', + ), + 'Symfony\\Component\\VarDumper\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/var-dumper', + ), + 'Symfony\\Component\\Stopwatch\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/stopwatch', + ), 'Symfony\\Component\\HttpKernel\\' => array ( 0 => __DIR__ . '/..' . '/symfony/http-kernel', @@ -120,6 +162,10 @@ class ComposerStaticInit3da29173c262c589b273f6106eae3544 array ( 0 => __DIR__ . '/..' . '/symfony/http-foundation', ), + 'Symfony\\Component\\Filesystem\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/filesystem', + ), 'Symfony\\Component\\ExpressionLanguage\\' => array ( 0 => __DIR__ . '/..' . '/symfony/expression-language', @@ -132,6 +178,14 @@ class ComposerStaticInit3da29173c262c589b273f6106eae3544 array ( 0 => __DIR__ . '/..' . '/symfony/debug', ), + 'Symfony\\Component\\Console\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/console', + ), + 'Symfony\\Component\\Config\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/config', + ), 'Symfony\\Component\\Cache\\' => array ( 0 => __DIR__ . '/..' . '/symfony/cache', @@ -156,6 +210,10 @@ class ComposerStaticInit3da29173c262c589b273f6106eae3544 array ( 0 => __DIR__ . '/..' . '/psr/cache/src', ), + 'PhpCoveralls\\' => + array ( + 0 => __DIR__ . '/..' . '/php-coveralls/php-coveralls/src', + ), 'League\\Glide\\' => array ( 0 => __DIR__ . '/..' . '/league/glide/src', @@ -204,6 +262,35 @@ class ComposerStaticInit3da29173c262c589b273f6106eae3544 array ( 0 => __DIR__ . '/..' . '/fisharebest/algorithm/src', ), + 'Doctrine\\Instantiator\\' => + array ( + 0 => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator', + ), + 'DeepCopy\\' => + array ( + 0 => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy', + ), + 'DebugBar\\' => + array ( + 0 => __DIR__ . '/..' . '/maximebf/debugbar/src/DebugBar', + ), + ); + + public static $prefixesPsr0 = array ( + 'P' => + array ( + 'Prophecy\\' => + array ( + 0 => __DIR__ . '/..' . '/phpspec/prophecy/src', + ), + ), + 'M' => + array ( + 'Mockery' => + array ( + 0 => __DIR__ . '/..' . '/mockery/mockery/library', + ), + ), ); public static $classMap = array ( @@ -212,9 +299,611 @@ class ComposerStaticInit3da29173c262c589b273f6106eae3544 'Datamatrix' => __DIR__ . '/..' . '/tecnickcom/tcpdf/include/barcodes/datamatrix.php', 'DivisionByZeroError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php', 'Error' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/Error.php', + 'File_Iterator' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Iterator.php', + 'File_Iterator_Facade' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Facade.php', + 'File_Iterator_Factory' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Factory.php', + 'Fisharebest\\Webtrees\\TestCase' => __DIR__ . '/../..' . '/tests/TestCase.php', + 'Hamcrest\\Arrays\\IsArray' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArray.php', + 'Hamcrest\\Arrays\\IsArrayContaining' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContaining.php', + 'Hamcrest\\Arrays\\IsArrayContainingInAnyOrder' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingInAnyOrder.php', + 'Hamcrest\\Arrays\\IsArrayContainingInOrder' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingInOrder.php', + 'Hamcrest\\Arrays\\IsArrayContainingKey' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingKey.php', + 'Hamcrest\\Arrays\\IsArrayContainingKeyValuePair' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingKeyValuePair.php', + 'Hamcrest\\Arrays\\IsArrayWithSize' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayWithSize.php', + 'Hamcrest\\Arrays\\MatchingOnce' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/MatchingOnce.php', + 'Hamcrest\\Arrays\\SeriesMatchingOnce' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/SeriesMatchingOnce.php', + 'Hamcrest\\AssertionError' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/AssertionError.php', + 'Hamcrest\\BaseDescription' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/BaseDescription.php', + 'Hamcrest\\BaseMatcher' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/BaseMatcher.php', + 'Hamcrest\\Collection\\IsEmptyTraversable' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Collection/IsEmptyTraversable.php', + 'Hamcrest\\Collection\\IsTraversableWithSize' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Collection/IsTraversableWithSize.php', + 'Hamcrest\\Core\\AllOf' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/AllOf.php', + 'Hamcrest\\Core\\AnyOf' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/AnyOf.php', + 'Hamcrest\\Core\\CombinableMatcher' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/CombinableMatcher.php', + 'Hamcrest\\Core\\DescribedAs' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/DescribedAs.php', + 'Hamcrest\\Core\\Every' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Every.php', + 'Hamcrest\\Core\\HasToString' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/HasToString.php', + 'Hamcrest\\Core\\Is' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Is.php', + 'Hamcrest\\Core\\IsAnything' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsAnything.php', + 'Hamcrest\\Core\\IsCollectionContaining' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsCollectionContaining.php', + 'Hamcrest\\Core\\IsEqual' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsEqual.php', + 'Hamcrest\\Core\\IsIdentical' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsIdentical.php', + 'Hamcrest\\Core\\IsInstanceOf' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsInstanceOf.php', + 'Hamcrest\\Core\\IsNot' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsNot.php', + 'Hamcrest\\Core\\IsNull' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsNull.php', + 'Hamcrest\\Core\\IsSame' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsSame.php', + 'Hamcrest\\Core\\IsTypeOf' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsTypeOf.php', + 'Hamcrest\\Core\\Set' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Set.php', + 'Hamcrest\\Core\\ShortcutCombination' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/ShortcutCombination.php', + 'Hamcrest\\Description' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Description.php', + 'Hamcrest\\DiagnosingMatcher' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/DiagnosingMatcher.php', + 'Hamcrest\\FeatureMatcher' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/FeatureMatcher.php', + 'Hamcrest\\Internal\\SelfDescribingValue' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Internal/SelfDescribingValue.php', + 'Hamcrest\\Matcher' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Matcher.php', + 'Hamcrest\\MatcherAssert' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/MatcherAssert.php', + 'Hamcrest\\Matchers' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Matchers.php', + 'Hamcrest\\NullDescription' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/NullDescription.php', + 'Hamcrest\\Number\\IsCloseTo' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Number/IsCloseTo.php', + 'Hamcrest\\Number\\OrderingComparison' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Number/OrderingComparison.php', + 'Hamcrest\\SelfDescribing' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/SelfDescribing.php', + 'Hamcrest\\StringDescription' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/StringDescription.php', + 'Hamcrest\\Text\\IsEmptyString' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEmptyString.php', + 'Hamcrest\\Text\\IsEqualIgnoringCase' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEqualIgnoringCase.php', + 'Hamcrest\\Text\\IsEqualIgnoringWhiteSpace' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEqualIgnoringWhiteSpace.php', + 'Hamcrest\\Text\\MatchesPattern' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/MatchesPattern.php', + 'Hamcrest\\Text\\StringContains' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContains.php', + 'Hamcrest\\Text\\StringContainsIgnoringCase' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContainsIgnoringCase.php', + 'Hamcrest\\Text\\StringContainsInOrder' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContainsInOrder.php', + 'Hamcrest\\Text\\StringEndsWith' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringEndsWith.php', + 'Hamcrest\\Text\\StringStartsWith' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringStartsWith.php', + 'Hamcrest\\Text\\SubstringMatcher' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/SubstringMatcher.php', + 'Hamcrest\\TypeSafeDiagnosingMatcher' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/TypeSafeDiagnosingMatcher.php', + 'Hamcrest\\TypeSafeMatcher' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/TypeSafeMatcher.php', + 'Hamcrest\\Type\\IsArray' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsArray.php', + 'Hamcrest\\Type\\IsBoolean' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsBoolean.php', + 'Hamcrest\\Type\\IsCallable' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsCallable.php', + 'Hamcrest\\Type\\IsDouble' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsDouble.php', + 'Hamcrest\\Type\\IsInteger' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsInteger.php', + 'Hamcrest\\Type\\IsNumeric' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsNumeric.php', + 'Hamcrest\\Type\\IsObject' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsObject.php', + 'Hamcrest\\Type\\IsResource' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsResource.php', + 'Hamcrest\\Type\\IsScalar' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsScalar.php', + 'Hamcrest\\Type\\IsString' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsString.php', + 'Hamcrest\\Util' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Util.php', + 'Hamcrest\\Xml\\HasXPath' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Xml/HasXPath.php', 'PDF417' => __DIR__ . '/..' . '/tecnickcom/tcpdf/include/barcodes/pdf417.php', + 'PHPUnit\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Exception.php', + 'PHPUnit\\Framework\\Assert' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Assert.php', + 'PHPUnit\\Framework\\AssertionFailedError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/AssertionFailedError.php', + 'PHPUnit\\Framework\\BaseTestListener' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/BaseTestListener.php', + 'PHPUnit\\Framework\\CodeCoverageException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/CodeCoverageException.php', + 'PHPUnit\\Framework\\Constraint\\ArrayHasKey' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ArrayHasKey.php', + 'PHPUnit\\Framework\\Constraint\\ArraySubset' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ArraySubset.php', + 'PHPUnit\\Framework\\Constraint\\Attribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Attribute.php', + 'PHPUnit\\Framework\\Constraint\\Callback' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Callback.php', + 'PHPUnit\\Framework\\Constraint\\ClassHasAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ClassHasAttribute.php', + 'PHPUnit\\Framework\\Constraint\\ClassHasStaticAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ClassHasStaticAttribute.php', + 'PHPUnit\\Framework\\Constraint\\Composite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Composite.php', + 'PHPUnit\\Framework\\Constraint\\Constraint' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Constraint.php', + 'PHPUnit\\Framework\\Constraint\\Count' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Count.php', + 'PHPUnit\\Framework\\Constraint\\DirectoryExists' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/DirectoryExists.php', + 'PHPUnit\\Framework\\Constraint\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Exception.php', + 'PHPUnit\\Framework\\Constraint\\ExceptionCode' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ExceptionCode.php', + 'PHPUnit\\Framework\\Constraint\\ExceptionMessage' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessage.php', + 'PHPUnit\\Framework\\Constraint\\ExceptionMessageRegularExpression' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessageRegularExpression.php', + 'PHPUnit\\Framework\\Constraint\\FileExists' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/FileExists.php', + 'PHPUnit\\Framework\\Constraint\\GreaterThan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/GreaterThan.php', + 'PHPUnit\\Framework\\Constraint\\IsAnything' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsAnything.php', + 'PHPUnit\\Framework\\Constraint\\IsEmpty' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsEmpty.php', + 'PHPUnit\\Framework\\Constraint\\IsEqual' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsEqual.php', + 'PHPUnit\\Framework\\Constraint\\IsFalse' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsFalse.php', + 'PHPUnit\\Framework\\Constraint\\IsFinite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsFinite.php', + 'PHPUnit\\Framework\\Constraint\\IsIdentical' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php', + 'PHPUnit\\Framework\\Constraint\\IsInfinite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsInfinite.php', + 'PHPUnit\\Framework\\Constraint\\IsInstanceOf' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsInstanceOf.php', + 'PHPUnit\\Framework\\Constraint\\IsJson' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsJson.php', + 'PHPUnit\\Framework\\Constraint\\IsNan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsNan.php', + 'PHPUnit\\Framework\\Constraint\\IsNull' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsNull.php', + 'PHPUnit\\Framework\\Constraint\\IsReadable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsReadable.php', + 'PHPUnit\\Framework\\Constraint\\IsTrue' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsTrue.php', + 'PHPUnit\\Framework\\Constraint\\IsType' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsType.php', + 'PHPUnit\\Framework\\Constraint\\IsWritable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsWritable.php', + 'PHPUnit\\Framework\\Constraint\\JsonMatches' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php', + 'PHPUnit\\Framework\\Constraint\\JsonMatchesErrorMessageProvider' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/JsonMatchesErrorMessageProvider.php', + 'PHPUnit\\Framework\\Constraint\\LessThan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LessThan.php', + 'PHPUnit\\Framework\\Constraint\\LogicalAnd' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LogicalAnd.php', + 'PHPUnit\\Framework\\Constraint\\LogicalNot' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LogicalNot.php', + 'PHPUnit\\Framework\\Constraint\\LogicalOr' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LogicalOr.php', + 'PHPUnit\\Framework\\Constraint\\LogicalXor' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LogicalXor.php', + 'PHPUnit\\Framework\\Constraint\\ObjectHasAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ObjectHasAttribute.php', + 'PHPUnit\\Framework\\Constraint\\RegularExpression' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/RegularExpression.php', + 'PHPUnit\\Framework\\Constraint\\SameSize' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/SameSize.php', + 'PHPUnit\\Framework\\Constraint\\StringContains' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringContains.php', + 'PHPUnit\\Framework\\Constraint\\StringEndsWith' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringEndsWith.php', + 'PHPUnit\\Framework\\Constraint\\StringMatchesFormatDescription' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringMatchesFormatDescription.php', + 'PHPUnit\\Framework\\Constraint\\StringStartsWith' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringStartsWith.php', + 'PHPUnit\\Framework\\Constraint\\TraversableContains' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/TraversableContains.php', + 'PHPUnit\\Framework\\Constraint\\TraversableContainsOnly' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/TraversableContainsOnly.php', + 'PHPUnit\\Framework\\CoveredCodeNotExecutedException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/CoveredCodeNotExecutedException.php', + 'PHPUnit\\Framework\\DataProviderTestSuite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/DataProviderTestSuite.php', + 'PHPUnit\\Framework\\Error\\Deprecated' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Deprecated.php', + 'PHPUnit\\Framework\\Error\\Error' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Error.php', + 'PHPUnit\\Framework\\Error\\Notice' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Notice.php', + 'PHPUnit\\Framework\\Error\\Warning' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Warning.php', + 'PHPUnit\\Framework\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception.php', + 'PHPUnit\\Framework\\ExceptionWrapper' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/ExceptionWrapper.php', + 'PHPUnit\\Framework\\ExpectationFailedException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/ExpectationFailedException.php', + 'PHPUnit\\Framework\\IncompleteTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTest.php', + 'PHPUnit\\Framework\\IncompleteTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTestCase.php', + 'PHPUnit\\Framework\\IncompleteTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTestError.php', + 'PHPUnit\\Framework\\InvalidCoversTargetException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/InvalidCoversTargetException.php', + 'PHPUnit\\Framework\\MissingCoversAnnotationException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MissingCoversAnnotationException.php', + 'PHPUnit\\Framework\\MockObject\\BadMethodCallException' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Exception/BadMethodCallException.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\Identity' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Builder/Identity.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\InvocationMocker' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Builder/InvocationMocker.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\Match' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Builder/Match.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\MethodNameMatch' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Builder/MethodNameMatch.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\NamespaceMatch' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Builder/NamespaceMatch.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\ParametersMatch' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Builder/ParametersMatch.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\Stub' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Builder/Stub.php', + 'PHPUnit\\Framework\\MockObject\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Exception/Exception.php', + 'PHPUnit\\Framework\\MockObject\\Generator' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Generator.php', + 'PHPUnit\\Framework\\MockObject\\Invocation' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Invocation/Invocation.php', + 'PHPUnit\\Framework\\MockObject\\InvocationMocker' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/InvocationMocker.php', + 'PHPUnit\\Framework\\MockObject\\Invocation\\ObjectInvocation' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Invocation/ObjectInvocation.php', + 'PHPUnit\\Framework\\MockObject\\Invocation\\StaticInvocation' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Invocation/StaticInvocation.php', + 'PHPUnit\\Framework\\MockObject\\Invokable' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Invokable.php', + 'PHPUnit\\Framework\\MockObject\\Matcher' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\AnyInvokedCount' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/AnyInvokedCount.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\AnyParameters' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/AnyParameters.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\ConsecutiveParameters' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/ConsecutiveParameters.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\Invocation' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/Invocation.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtIndex' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtIndex.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtLeastCount' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtLeastCount.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtLeastOnce' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtLeastOnce.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtMostCount' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtMostCount.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedCount' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedCount.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedRecorder' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedRecorder.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\MethodName' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/MethodName.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\Parameters' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/Parameters.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\StatelessInvocation' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/StatelessInvocation.php', + 'PHPUnit\\Framework\\MockObject\\MockBuilder' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/MockBuilder.php', + 'PHPUnit\\Framework\\MockObject\\MockObject' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/ForwardCompatibility/MockObject.php', + 'PHPUnit\\Framework\\MockObject\\RuntimeException' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Exception/RuntimeException.php', + 'PHPUnit\\Framework\\MockObject\\Stub' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ConsecutiveCalls' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/ConsecutiveCalls.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/Exception.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\MatcherCollection' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/MatcherCollection.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnArgument' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/ReturnArgument.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnCallback' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/ReturnCallback.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnReference' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/ReturnReference.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnSelf' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/ReturnSelf.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnStub' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/ReturnStub.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnValueMap' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/ReturnValueMap.php', + 'PHPUnit\\Framework\\MockObject\\Verifiable' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Verifiable.php', + 'PHPUnit\\Framework\\OutputError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/OutputError.php', + 'PHPUnit\\Framework\\RiskyTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/RiskyTest.php', + 'PHPUnit\\Framework\\RiskyTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/RiskyTestError.php', + 'PHPUnit\\Framework\\SelfDescribing' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SelfDescribing.php', + 'PHPUnit\\Framework\\SkippedTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTest.php', + 'PHPUnit\\Framework\\SkippedTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTestCase.php', + 'PHPUnit\\Framework\\SkippedTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTestError.php', + 'PHPUnit\\Framework\\SkippedTestSuiteError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTestSuiteError.php', + 'PHPUnit\\Framework\\SyntheticError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SyntheticError.php', + 'PHPUnit\\Framework\\Test' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Test.php', + 'PHPUnit\\Framework\\TestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestCase.php', + 'PHPUnit\\Framework\\TestFailure' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestFailure.php', + 'PHPUnit\\Framework\\TestListener' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestListener.php', + 'PHPUnit\\Framework\\TestListenerDefaultImplementation' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestListenerDefaultImplementation.php', + 'PHPUnit\\Framework\\TestResult' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestResult.php', + 'PHPUnit\\Framework\\TestSuite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestSuite.php', + 'PHPUnit\\Framework\\TestSuiteIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestSuiteIterator.php', + 'PHPUnit\\Framework\\UnintentionallyCoveredCodeError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/UnintentionallyCoveredCodeError.php', + 'PHPUnit\\Framework\\Warning' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Warning.php', + 'PHPUnit\\Framework\\WarningTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/WarningTestCase.php', + 'PHPUnit\\Runner\\BaseTestRunner' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/BaseTestRunner.php', + 'PHPUnit\\Runner\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception.php', + 'PHPUnit\\Runner\\Filter\\ExcludeGroupFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php', + 'PHPUnit\\Runner\\Filter\\Factory' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/Factory.php', + 'PHPUnit\\Runner\\Filter\\GroupFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php', + 'PHPUnit\\Runner\\Filter\\IncludeGroupFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php', + 'PHPUnit\\Runner\\Filter\\NameFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php', + 'PHPUnit\\Runner\\PhptTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/PhptTestCase.php', + 'PHPUnit\\Runner\\StandardTestSuiteLoader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php', + 'PHPUnit\\Runner\\TestSuiteLoader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestSuiteLoader.php', + 'PHPUnit\\Runner\\Version' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Version.php', + 'PHPUnit\\TextUI\\Command' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Command.php', + 'PHPUnit\\TextUI\\ResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/ResultPrinter.php', + 'PHPUnit\\TextUI\\TestRunner' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/TestRunner.php', + 'PHPUnit\\Util\\Blacklist' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Blacklist.php', + 'PHPUnit\\Util\\Configuration' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Configuration.php', + 'PHPUnit\\Util\\ConfigurationGenerator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/ConfigurationGenerator.php', + 'PHPUnit\\Util\\ErrorHandler' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/ErrorHandler.php', + 'PHPUnit\\Util\\Fileloader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Fileloader.php', + 'PHPUnit\\Util\\Filesystem' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Filesystem.php', + 'PHPUnit\\Util\\Filter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Filter.php', + 'PHPUnit\\Util\\Getopt' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Getopt.php', + 'PHPUnit\\Util\\GlobalState' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/GlobalState.php', + 'PHPUnit\\Util\\InvalidArgumentHelper' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/InvalidArgumentHelper.php', + 'PHPUnit\\Util\\Json' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Json.php', + 'PHPUnit\\Util\\Log\\JUnit' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Log/JUnit.php', + 'PHPUnit\\Util\\Log\\TeamCity' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Log/TeamCity.php', + 'PHPUnit\\Util\\PHP\\AbstractPhpProcess' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/AbstractPhpProcess.php', + 'PHPUnit\\Util\\PHP\\DefaultPhpProcess' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/DefaultPhpProcess.php', + 'PHPUnit\\Util\\PHP\\WindowsPhpProcess' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/WindowsPhpProcess.php', + 'PHPUnit\\Util\\Printer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Printer.php', + 'PHPUnit\\Util\\RegularExpression' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/RegularExpression.php', + 'PHPUnit\\Util\\Test' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Test.php', + 'PHPUnit\\Util\\TestDox\\HtmlResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/HtmlResultPrinter.php', + 'PHPUnit\\Util\\TestDox\\NamePrettifier' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php', + 'PHPUnit\\Util\\TestDox\\ResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php', + 'PHPUnit\\Util\\TestDox\\TextResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/TextResultPrinter.php', + 'PHPUnit\\Util\\TestDox\\XmlResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/XmlResultPrinter.php', + 'PHPUnit\\Util\\TextTestListRenderer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TextTestListRenderer.php', + 'PHPUnit\\Util\\Type' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Type.php', + 'PHPUnit\\Util\\Xml' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Xml.php', + 'PHPUnit\\Util\\XmlTestListRenderer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/XmlTestListRenderer.php', + 'PHPUnit_Framework_MockObject_MockObject' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/MockObject.php', + 'PHP_Timer' => __DIR__ . '/..' . '/phpunit/php-timer/src/Timer.php', + 'PHP_Token' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_TokenWithScope' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_TokenWithScopeAndVisibility' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ABSTRACT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AMPERSAND' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AND_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ARRAY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ARRAY_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ASYNC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AWAIT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BACKTICK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BAD_CHARACTER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BOOLEAN_AND' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BOOLEAN_OR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BOOL_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BREAK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CALLABLE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CARET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CASE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CATCH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CHARACTER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLASS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLASS_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLASS_NAME_CONSTANT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLONE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLOSE_BRACKET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLOSE_CURLY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLOSE_SQUARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLOSE_TAG' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COALESCE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COLON' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COMMA' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COMMENT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COMPILER_HALT_OFFSET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CONCAT_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CONST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CONSTANT_ENCAPSED_STRING' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CONTINUE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CURLY_OPEN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DEC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DECLARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DEFAULT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DIR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DIV' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DIV_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DNUMBER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOC_COMMENT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOLLAR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOLLAR_OPEN_CURLY_BRACES' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOUBLE_ARROW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOUBLE_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOUBLE_COLON' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOUBLE_QUOTES' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ECHO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ELLIPSIS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ELSE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ELSEIF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EMPTY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENCAPSED_AND_WHITESPACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDDECLARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDFOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDFOREACH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDIF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDSWITCH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDWHILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_END_HEREDOC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENUM' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EQUALS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EVAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EXCLAMATION_MARK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EXIT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EXTENDS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FINAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FINALLY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FOREACH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FUNCTION' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FUNC_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_GLOBAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_GOTO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_GT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_HALT_COMPILER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IMPLEMENTS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INCLUDE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INCLUDE_ONCE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INLINE_HTML' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INSTANCEOF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INSTEADOF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INTERFACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INT_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ISSET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_GREATER_OR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_IDENTICAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_NOT_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_NOT_IDENTICAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_SMALLER_OR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_Includes' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_JOIN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LAMBDA_ARROW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LAMBDA_CP' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LAMBDA_OP' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LINE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LIST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LNUMBER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LOGICAL_AND' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LOGICAL_OR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LOGICAL_XOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_METHOD_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MINUS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MINUS_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MOD_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MULT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MUL_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NAMESPACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NEW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NS_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NS_SEPARATOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NULLSAFE_OBJECT_OPERATOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NUM_STRING' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OBJECT_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OBJECT_OPERATOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ONUMBER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_BRACKET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_CURLY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_SQUARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_TAG' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_TAG_WITH_ECHO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PAAMAYIM_NEKUDOTAYIM' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PERCENT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PIPE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PLUS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PLUS_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_POW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_POW_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PRINT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PRIVATE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PROTECTED' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PUBLIC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_QUESTION_MARK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_REQUIRE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_REQUIRE_ONCE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_RETURN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SEMICOLON' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SHAPE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SL_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SPACESHIP' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_START_HEREDOC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_STATIC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_STRING' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_STRING_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_STRING_VARNAME' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SUPER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SWITCH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_Stream' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token/Stream.php', + 'PHP_Token_Stream_CachingFactory' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token/Stream/CachingFactory.php', + 'PHP_Token_THROW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TILDE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TRAIT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TRAIT_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TRY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TYPE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TYPELIST_GT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TYPELIST_LT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_UNSET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_UNSET_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_USE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_USE_FUNCTION' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_VAR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_VARIABLE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_WHERE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_WHILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_WHITESPACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_ATTRIBUTE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_CATEGORY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_CATEGORY_LABEL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_CHILDREN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_LABEL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_REQUIRED' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_TAG_GT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_TAG_LT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XHP_TEXT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XOR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_YIELD' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_YIELD_FROM' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'ParseError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/ParseError.php', + 'PharIo\\Manifest\\Application' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Application.php', + 'PharIo\\Manifest\\ApplicationName' => __DIR__ . '/..' . '/phar-io/manifest/src/values/ApplicationName.php', + 'PharIo\\Manifest\\Author' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Author.php', + 'PharIo\\Manifest\\AuthorCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/values/AuthorCollection.php', + 'PharIo\\Manifest\\AuthorCollectionIterator' => __DIR__ . '/..' . '/phar-io/manifest/src/values/AuthorCollectionIterator.php', + 'PharIo\\Manifest\\AuthorElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/AuthorElement.php', + 'PharIo\\Manifest\\AuthorElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/AuthorElementCollection.php', + 'PharIo\\Manifest\\BundledComponent' => __DIR__ . '/..' . '/phar-io/manifest/src/values/BundledComponent.php', + 'PharIo\\Manifest\\BundledComponentCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/values/BundledComponentCollection.php', + 'PharIo\\Manifest\\BundledComponentCollectionIterator' => __DIR__ . '/..' . '/phar-io/manifest/src/values/BundledComponentCollectionIterator.php', + 'PharIo\\Manifest\\BundlesElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/BundlesElement.php', + 'PharIo\\Manifest\\ComponentElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ComponentElement.php', + 'PharIo\\Manifest\\ComponentElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ComponentElementCollection.php', + 'PharIo\\Manifest\\ContainsElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ContainsElement.php', + 'PharIo\\Manifest\\CopyrightElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/CopyrightElement.php', + 'PharIo\\Manifest\\CopyrightInformation' => __DIR__ . '/..' . '/phar-io/manifest/src/values/CopyrightInformation.php', + 'PharIo\\Manifest\\ElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ElementCollection.php', + 'PharIo\\Manifest\\Email' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Email.php', + 'PharIo\\Manifest\\Exception' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/Exception.php', + 'PharIo\\Manifest\\ExtElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ExtElement.php', + 'PharIo\\Manifest\\ExtElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ExtElementCollection.php', + 'PharIo\\Manifest\\Extension' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Extension.php', + 'PharIo\\Manifest\\ExtensionElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ExtensionElement.php', + 'PharIo\\Manifest\\InvalidApplicationNameException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php', + 'PharIo\\Manifest\\InvalidEmailException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/InvalidEmailException.php', + 'PharIo\\Manifest\\InvalidUrlException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/InvalidUrlException.php', + 'PharIo\\Manifest\\Library' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Library.php', + 'PharIo\\Manifest\\License' => __DIR__ . '/..' . '/phar-io/manifest/src/values/License.php', + 'PharIo\\Manifest\\LicenseElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/LicenseElement.php', + 'PharIo\\Manifest\\Manifest' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Manifest.php', + 'PharIo\\Manifest\\ManifestDocument' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ManifestDocument.php', + 'PharIo\\Manifest\\ManifestDocumentException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestDocumentException.php', + 'PharIo\\Manifest\\ManifestDocumentLoadingException' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ManifestDocumentLoadingException.php', + 'PharIo\\Manifest\\ManifestDocumentMapper' => __DIR__ . '/..' . '/phar-io/manifest/src/ManifestDocumentMapper.php', + 'PharIo\\Manifest\\ManifestDocumentMapperException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php', + 'PharIo\\Manifest\\ManifestElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ManifestElement.php', + 'PharIo\\Manifest\\ManifestElementException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestElementException.php', + 'PharIo\\Manifest\\ManifestLoader' => __DIR__ . '/..' . '/phar-io/manifest/src/ManifestLoader.php', + 'PharIo\\Manifest\\ManifestLoaderException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestLoaderException.php', + 'PharIo\\Manifest\\ManifestSerializer' => __DIR__ . '/..' . '/phar-io/manifest/src/ManifestSerializer.php', + 'PharIo\\Manifest\\PhpElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/PhpElement.php', + 'PharIo\\Manifest\\PhpExtensionRequirement' => __DIR__ . '/..' . '/phar-io/manifest/src/values/PhpExtensionRequirement.php', + 'PharIo\\Manifest\\PhpVersionRequirement' => __DIR__ . '/..' . '/phar-io/manifest/src/values/PhpVersionRequirement.php', + 'PharIo\\Manifest\\Requirement' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Requirement.php', + 'PharIo\\Manifest\\RequirementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/values/RequirementCollection.php', + 'PharIo\\Manifest\\RequirementCollectionIterator' => __DIR__ . '/..' . '/phar-io/manifest/src/values/RequirementCollectionIterator.php', + 'PharIo\\Manifest\\RequiresElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/RequiresElement.php', + 'PharIo\\Manifest\\Type' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Type.php', + 'PharIo\\Manifest\\Url' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Url.php', + 'PharIo\\Version\\AbstractVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/AbstractVersionConstraint.php', + 'PharIo\\Version\\AndVersionConstraintGroup' => __DIR__ . '/..' . '/phar-io/version/src/AndVersionConstraintGroup.php', + 'PharIo\\Version\\AnyVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/AnyVersionConstraint.php', + 'PharIo\\Version\\ExactVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/ExactVersionConstraint.php', + 'PharIo\\Version\\Exception' => __DIR__ . '/..' . '/phar-io/version/src/Exception.php', + 'PharIo\\Version\\GreaterThanOrEqualToVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/GreaterThanOrEqualToVersionConstraint.php', + 'PharIo\\Version\\InvalidVersionException' => __DIR__ . '/..' . '/phar-io/version/src/InvalidVersionException.php', + 'PharIo\\Version\\OrVersionConstraintGroup' => __DIR__ . '/..' . '/phar-io/version/src/OrVersionConstraintGroup.php', + 'PharIo\\Version\\PreReleaseSuffix' => __DIR__ . '/..' . '/phar-io/version/src/PreReleaseSuffix.php', + 'PharIo\\Version\\SpecificMajorAndMinorVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/SpecificMajorAndMinorVersionConstraint.php', + 'PharIo\\Version\\SpecificMajorVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/SpecificMajorVersionConstraint.php', + 'PharIo\\Version\\UnsupportedVersionConstraintException' => __DIR__ . '/..' . '/phar-io/version/src/UnsupportedVersionConstraintException.php', + 'PharIo\\Version\\Version' => __DIR__ . '/..' . '/phar-io/version/src/Version.php', + 'PharIo\\Version\\VersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraint.php', + 'PharIo\\Version\\VersionConstraintParser' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraintParser.php', + 'PharIo\\Version\\VersionConstraintValue' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraintValue.php', + 'PharIo\\Version\\VersionNumber' => __DIR__ . '/..' . '/phar-io/version/src/VersionNumber.php', 'QRcode' => __DIR__ . '/..' . '/tecnickcom/tcpdf/include/barcodes/qrcode.php', + 'SebastianBergmann\\CodeCoverage\\CodeCoverage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/CodeCoverage.php', + 'SebastianBergmann\\CodeCoverage\\CoveredCodeNotExecutedException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php', + 'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Driver.php', + 'SebastianBergmann\\CodeCoverage\\Driver\\HHVM' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/HHVM.php', + 'SebastianBergmann\\CodeCoverage\\Driver\\PHPDBG' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/PHPDBG.php', + 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Xdebug.php', + 'SebastianBergmann\\CodeCoverage\\Exception' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/Exception.php', + 'SebastianBergmann\\CodeCoverage\\Filter' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Filter.php', + 'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php', + 'SebastianBergmann\\CodeCoverage\\MissingCoversAnnotationException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/MissingCoversAnnotationException.php', + 'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/AbstractNode.php', + 'SebastianBergmann\\CodeCoverage\\Node\\Builder' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Builder.php', + 'SebastianBergmann\\CodeCoverage\\Node\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Directory.php', + 'SebastianBergmann\\CodeCoverage\\Node\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/File.php', + 'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Iterator.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Clover' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Clover.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Crap4j.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Facade.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php', + 'SebastianBergmann\\CodeCoverage\\Report\\PHP' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/PHP.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Text' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Text.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/File.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Method.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Node.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Project.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Report.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Source.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php', + 'SebastianBergmann\\CodeCoverage\\RuntimeException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/RuntimeException.php', + 'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php', + 'SebastianBergmann\\CodeCoverage\\Util' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Util.php', + 'SebastianBergmann\\CodeCoverage\\Version' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Version.php', + 'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => __DIR__ . '/..' . '/sebastian/code-unit-reverse-lookup/src/Wizard.php', + 'SebastianBergmann\\Comparator\\ArrayComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ArrayComparator.php', + 'SebastianBergmann\\Comparator\\Comparator' => __DIR__ . '/..' . '/sebastian/comparator/src/Comparator.php', + 'SebastianBergmann\\Comparator\\ComparisonFailure' => __DIR__ . '/..' . '/sebastian/comparator/src/ComparisonFailure.php', + 'SebastianBergmann\\Comparator\\DOMNodeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DOMNodeComparator.php', + 'SebastianBergmann\\Comparator\\DateTimeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DateTimeComparator.php', + 'SebastianBergmann\\Comparator\\DoubleComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DoubleComparator.php', + 'SebastianBergmann\\Comparator\\ExceptionComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ExceptionComparator.php', + 'SebastianBergmann\\Comparator\\Factory' => __DIR__ . '/..' . '/sebastian/comparator/src/Factory.php', + 'SebastianBergmann\\Comparator\\MockObjectComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/MockObjectComparator.php', + 'SebastianBergmann\\Comparator\\NumericComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/NumericComparator.php', + 'SebastianBergmann\\Comparator\\ObjectComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ObjectComparator.php', + 'SebastianBergmann\\Comparator\\ResourceComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ResourceComparator.php', + 'SebastianBergmann\\Comparator\\ScalarComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ScalarComparator.php', + 'SebastianBergmann\\Comparator\\SplObjectStorageComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/SplObjectStorageComparator.php', + 'SebastianBergmann\\Comparator\\TypeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/TypeComparator.php', + 'SebastianBergmann\\Diff\\Chunk' => __DIR__ . '/..' . '/sebastian/diff/src/Chunk.php', + 'SebastianBergmann\\Diff\\Diff' => __DIR__ . '/..' . '/sebastian/diff/src/Diff.php', + 'SebastianBergmann\\Diff\\Differ' => __DIR__ . '/..' . '/sebastian/diff/src/Differ.php', + 'SebastianBergmann\\Diff\\Exception' => __DIR__ . '/..' . '/sebastian/diff/src/Exception/Exception.php', + 'SebastianBergmann\\Diff\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/diff/src/Exception/InvalidArgumentException.php', + 'SebastianBergmann\\Diff\\Line' => __DIR__ . '/..' . '/sebastian/diff/src/Line.php', + 'SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/LongestCommonSubsequenceCalculator.php', + 'SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php', + 'SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php', + 'SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php', + 'SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => __DIR__ . '/..' . '/sebastian/diff/src/Output/DiffOutputBuilderInterface.php', + 'SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php', + 'SebastianBergmann\\Diff\\Parser' => __DIR__ . '/..' . '/sebastian/diff/src/Parser.php', + 'SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php', + 'SebastianBergmann\\Environment\\Console' => __DIR__ . '/..' . '/sebastian/environment/src/Console.php', + 'SebastianBergmann\\Environment\\OperatingSystem' => __DIR__ . '/..' . '/sebastian/environment/src/OperatingSystem.php', + 'SebastianBergmann\\Environment\\Runtime' => __DIR__ . '/..' . '/sebastian/environment/src/Runtime.php', + 'SebastianBergmann\\Exporter\\Exporter' => __DIR__ . '/..' . '/sebastian/exporter/src/Exporter.php', + 'SebastianBergmann\\GlobalState\\Blacklist' => __DIR__ . '/..' . '/sebastian/global-state/src/Blacklist.php', + 'SebastianBergmann\\GlobalState\\CodeExporter' => __DIR__ . '/..' . '/sebastian/global-state/src/CodeExporter.php', + 'SebastianBergmann\\GlobalState\\Exception' => __DIR__ . '/..' . '/sebastian/global-state/src/exceptions/Exception.php', + 'SebastianBergmann\\GlobalState\\Restorer' => __DIR__ . '/..' . '/sebastian/global-state/src/Restorer.php', + 'SebastianBergmann\\GlobalState\\RuntimeException' => __DIR__ . '/..' . '/sebastian/global-state/src/exceptions/RuntimeException.php', + 'SebastianBergmann\\GlobalState\\Snapshot' => __DIR__ . '/..' . '/sebastian/global-state/src/Snapshot.php', + 'SebastianBergmann\\ObjectEnumerator\\Enumerator' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/Enumerator.php', + 'SebastianBergmann\\ObjectEnumerator\\Exception' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/Exception.php', + 'SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/InvalidArgumentException.php', + 'SebastianBergmann\\ObjectReflector\\Exception' => __DIR__ . '/..' . '/sebastian/object-reflector/src/Exception.php', + 'SebastianBergmann\\ObjectReflector\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/object-reflector/src/InvalidArgumentException.php', + 'SebastianBergmann\\ObjectReflector\\ObjectReflector' => __DIR__ . '/..' . '/sebastian/object-reflector/src/ObjectReflector.php', + 'SebastianBergmann\\RecursionContext\\Context' => __DIR__ . '/..' . '/sebastian/recursion-context/src/Context.php', + 'SebastianBergmann\\RecursionContext\\Exception' => __DIR__ . '/..' . '/sebastian/recursion-context/src/Exception.php', + 'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/recursion-context/src/InvalidArgumentException.php', + 'SebastianBergmann\\ResourceOperations\\ResourceOperations' => __DIR__ . '/..' . '/sebastian/resource-operations/src/ResourceOperations.php', + 'SebastianBergmann\\Version' => __DIR__ . '/..' . '/sebastian/version/src/Version.php', 'SessionUpdateTimestampHandlerInterface' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php', 'TCPDF' => __DIR__ . '/..' . '/tecnickcom/tcpdf/tcpdf.php', 'TCPDF2DBarcode' => __DIR__ . '/..' . '/tecnickcom/tcpdf/tcpdf_barcodes_2d.php', @@ -227,6 +916,15 @@ class ComposerStaticInit3da29173c262c589b273f6106eae3544 'TCPDF_IMPORT' => __DIR__ . '/..' . '/tecnickcom/tcpdf/tcpdf_import.php', 'TCPDF_PARSER' => __DIR__ . '/..' . '/tecnickcom/tcpdf/tcpdf_parser.php', 'TCPDF_STATIC' => __DIR__ . '/..' . '/tecnickcom/tcpdf/include/tcpdf_static.php', + 'Text_Template' => __DIR__ . '/..' . '/phpunit/php-text-template/src/Template.php', + 'TheSeer\\Tokenizer\\Exception' => __DIR__ . '/..' . '/theseer/tokenizer/src/Exception.php', + 'TheSeer\\Tokenizer\\NamespaceUri' => __DIR__ . '/..' . '/theseer/tokenizer/src/NamespaceUri.php', + 'TheSeer\\Tokenizer\\NamespaceUriException' => __DIR__ . '/..' . '/theseer/tokenizer/src/NamespaceUriException.php', + 'TheSeer\\Tokenizer\\Token' => __DIR__ . '/..' . '/theseer/tokenizer/src/Token.php', + 'TheSeer\\Tokenizer\\TokenCollection' => __DIR__ . '/..' . '/theseer/tokenizer/src/TokenCollection.php', + 'TheSeer\\Tokenizer\\TokenCollectionException' => __DIR__ . '/..' . '/theseer/tokenizer/src/TokenCollectionException.php', + 'TheSeer\\Tokenizer\\Tokenizer' => __DIR__ . '/..' . '/theseer/tokenizer/src/Tokenizer.php', + 'TheSeer\\Tokenizer\\XMLSerializer' => __DIR__ . '/..' . '/theseer/tokenizer/src/XMLSerializer.php', 'TypeError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/TypeError.php', ); @@ -235,6 +933,7 @@ class ComposerStaticInit3da29173c262c589b273f6106eae3544 return \Closure::bind(function () use ($loader) { $loader->prefixLengthsPsr4 = ComposerStaticInit3da29173c262c589b273f6106eae3544::$prefixLengthsPsr4; $loader->prefixDirsPsr4 = ComposerStaticInit3da29173c262c589b273f6106eae3544::$prefixDirsPsr4; + $loader->prefixesPsr0 = ComposerStaticInit3da29173c262c589b273f6106eae3544::$prefixesPsr0; $loader->classMap = ComposerStaticInit3da29173c262c589b273f6106eae3544::$classMap; }, null, ClassLoader::class); diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index b02d47b7c0..4ff0edab30 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -1,5 +1,61 @@ [ { + "name": "doctrine/instantiator", + "version": "1.0.5", + "version_normalized": "1.0.5.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d", + "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d", + "shasum": "" + }, + "require": { + "php": ">=5.3,<8.0-DEV" + }, + "require-dev": { + "athletic/athletic": "~0.1.8", + "ext-pdo": "*", + "ext-phar": "*", + "phpunit/phpunit": "~4.0", + "squizlabs/php_codesniffer": "~2.0" + }, + "time": "2015-06-14T21:17:01+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "http://ocramius.github.com/" + } + ], + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "homepage": "https://github.com/doctrine/instantiator", + "keywords": [ + "constructor", + "instantiate" + ] + }, + { "name": "filp/whoops", "version": "2.2.1", "version_normalized": "2.2.1.0", @@ -419,6 +475,56 @@ ] }, { + "name": "hamcrest/hamcrest-php", + "version": "v2.0.0", + "version_normalized": "2.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad", + "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad", + "shasum": "" + }, + "require": { + "php": "^5.3|^7.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "1.3.3", + "phpunit/phpunit": "~4.0", + "satooshi/php-coveralls": "^1.0" + }, + "time": "2016-01-20T08:20:44+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "hamcrest" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD" + ], + "description": "This is the PHP port of Hamcrest Matchers", + "keywords": [ + "test" + ] + }, + { "name": "intervention/image", "version": "2.4.2", "version_normalized": "2.4.2.0", @@ -760,6 +866,184 @@ ] }, { + "name": "maximebf/debugbar", + "version": "v1.15.0", + "version_normalized": "1.15.0.0", + "source": { + "type": "git", + "url": "https://github.com/maximebf/php-debugbar.git", + "reference": "30e7d60937ee5f1320975ca9bc7bcdd44d500f07" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/30e7d60937ee5f1320975ca9bc7bcdd44d500f07", + "reference": "30e7d60937ee5f1320975ca9bc7bcdd44d500f07", + "shasum": "" + }, + "require": { + "php": ">=5.3.0", + "psr/log": "^1.0", + "symfony/var-dumper": "^2.6|^3.0|^4.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.0|^5.0" + }, + "suggest": { + "kriswallsmith/assetic": "The best way to manage assets", + "monolog/monolog": "Log using Monolog", + "predis/predis": "Redis storage" + }, + "time": "2017-12-15T11:13:46+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.14-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "DebugBar\\": "src/DebugBar/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Maxime Bouroumeau-Fuseau", + "email": "maxime.bouroumeau@gmail.com", + "homepage": "http://maximebf.com" + }, + { + "name": "Barry vd. Heuvel", + "email": "barryvdh@gmail.com" + } + ], + "description": "Debug bar in the browser for php application", + "homepage": "https://github.com/maximebf/php-debugbar", + "keywords": [ + "debug", + "debugbar" + ] + }, + { + "name": "mockery/mockery", + "version": "1.1.0", + "version_normalized": "1.1.0.0", + "source": { + "type": "git", + "url": "https://github.com/mockery/mockery.git", + "reference": "99e29d3596b16dabe4982548527d5ddf90232e99" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mockery/mockery/zipball/99e29d3596b16dabe4982548527d5ddf90232e99", + "reference": "99e29d3596b16dabe4982548527d5ddf90232e99", + "shasum": "" + }, + "require": { + "hamcrest/hamcrest-php": "~2.0", + "lib-pcre": ">=7.0", + "php": ">=5.6.0" + }, + "require-dev": { + "phpdocumentor/phpdocumentor": "^2.9", + "phpunit/phpunit": "~5.7.10|~6.5" + }, + "time": "2018-05-08T08:54:48+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-0": { + "Mockery": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Pádraic Brady", + "email": "padraic.brady@gmail.com", + "homepage": "http://blog.astrumfutura.com" + }, + { + "name": "Dave Marshall", + "email": "dave.marshall@atstsolutions.co.uk", + "homepage": "http://davedevelopment.co.uk" + } + ], + "description": "Mockery is a simple yet flexible PHP mock object framework", + "homepage": "https://github.com/mockery/mockery", + "keywords": [ + "BDD", + "TDD", + "library", + "mock", + "mock objects", + "mockery", + "stub", + "test", + "test double", + "testing" + ] + }, + { + "name": "myclabs/deep-copy", + "version": "1.7.0", + "version_normalized": "1.7.0.0", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", + "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "doctrine/collections": "^1.0", + "doctrine/common": "^2.6", + "phpunit/phpunit": "^4.1" + }, + "time": "2017-10-19T19:58:43+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + }, + "files": [ + "src/DeepCopy/deep_copy.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ] + }, + { "name": "paragonie/random_compat", "version": "v9.99.99", "version_normalized": "9.99.99.0", @@ -807,6 +1091,826 @@ ] }, { + "name": "phar-io/manifest", + "version": "1.0.1", + "version_normalized": "1.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0", + "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-phar": "*", + "phar-io/version": "^1.0.1", + "php": "^5.6 || ^7.0" + }, + "time": "2017-03-05T18:14:27+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)" + }, + { + "name": "phar-io/version", + "version": "1.0.1", + "version_normalized": "1.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df", + "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "time": "2017-03-05T17:38:23+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints" + }, + { + "name": "php-coveralls/php-coveralls", + "version": "v2.1.0", + "version_normalized": "2.1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-coveralls/php-coveralls.git", + "reference": "3b00c229726f892bfdadeaf01ea430ffd04a939d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-coveralls/php-coveralls/zipball/3b00c229726f892bfdadeaf01ea430ffd04a939d", + "reference": "3b00c229726f892bfdadeaf01ea430ffd04a939d", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-simplexml": "*", + "guzzlehttp/guzzle": "^6.0", + "php": "^5.5 || ^7.0", + "psr/log": "^1.0", + "symfony/config": "^2.1 || ^3.0 || ^4.0", + "symfony/console": "^2.1 || ^3.0 || ^4.0", + "symfony/stopwatch": "^2.0 || ^3.0 || ^4.0", + "symfony/yaml": "^2.0 || ^3.0 || ^4.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0" + }, + "suggest": { + "symfony/http-kernel": "Allows Symfony integration" + }, + "time": "2018-05-22T23:11:08+00:00", + "bin": [ + "bin/php-coveralls" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "PhpCoveralls\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Kitamura Satoshi", + "email": "with.no.parachute@gmail.com", + "homepage": "https://www.facebook.com/satooshi.jp", + "role": "Original creator" + }, + { + "name": "Takashi Matsuo", + "email": "tmatsuo@google.com" + }, + { + "name": "Google Inc" + }, + { + "name": "Dariusz Ruminski", + "email": "dariusz.ruminski@gmail.com", + "homepage": "https://github.com/keradus" + }, + { + "name": "Contributors", + "homepage": "https://github.com/php-coveralls/php-coveralls/graphs/contributors" + } + ], + "description": "PHP client library for Coveralls API", + "homepage": "https://github.com/php-coveralls/php-coveralls", + "keywords": [ + "ci", + "coverage", + "github", + "test" + ] + }, + { + "name": "phpdocumentor/reflection-common", + "version": "1.0.1", + "version_normalized": "1.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", + "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", + "shasum": "" + }, + "require": { + "php": ">=5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.6" + }, + "time": "2017-09-11T18:02:19+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": [ + "src" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jaap van Otterdijk", + "email": "opensource@ijaap.nl" + } + ], + "description": "Common reflection classes used by phpdocumentor to reflect the code structure", + "homepage": "http://www.phpdoc.org", + "keywords": [ + "FQSEN", + "phpDocumentor", + "phpdoc", + "reflection", + "static analysis" + ] + }, + { + "name": "phpdocumentor/reflection-docblock", + "version": "4.3.0", + "version_normalized": "4.3.0.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", + "reference": "94fd0001232e47129dd3504189fa1c7225010d08" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08", + "reference": "94fd0001232e47129dd3504189fa1c7225010d08", + "shasum": "" + }, + "require": { + "php": "^7.0", + "phpdocumentor/reflection-common": "^1.0.0", + "phpdocumentor/type-resolver": "^0.4.0", + "webmozart/assert": "^1.0" + }, + "require-dev": { + "doctrine/instantiator": "~1.0.5", + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^6.4" + }, + "time": "2017-11-30T07:14:17+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock." + }, + { + "name": "phpdocumentor/type-resolver", + "version": "0.4.0", + "version_normalized": "0.4.0.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/TypeResolver.git", + "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7", + "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7", + "shasum": "" + }, + "require": { + "php": "^5.5 || ^7.0", + "phpdocumentor/reflection-common": "^1.0" + }, + "require-dev": { + "mockery/mockery": "^0.9.4", + "phpunit/phpunit": "^5.2||^4.8.24" + }, + "time": "2017-07-14T14:27:02+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ] + }, + { + "name": "phpspec/prophecy", + "version": "1.8.0", + "version_normalized": "1.8.0.0", + "source": { + "type": "git", + "url": "https://github.com/phpspec/prophecy.git", + "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06", + "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.0.2", + "php": "^5.3|^7.0", + "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0", + "sebastian/comparator": "^1.1|^2.0|^3.0", + "sebastian/recursion-context": "^1.0|^2.0|^3.0" + }, + "require-dev": { + "phpspec/phpspec": "^2.5|^3.2", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" + }, + "time": "2018-08-05T17:53:17+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.8.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-0": { + "Prophecy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + }, + { + "name": "Marcello Duarte", + "email": "marcello.duarte@gmail.com" + } + ], + "description": "Highly opinionated mocking framework for PHP 5.3+", + "homepage": "https://github.com/phpspec/prophecy", + "keywords": [ + "Double", + "Dummy", + "fake", + "mock", + "spy", + "stub" + ] + }, + { + "name": "phpunit/php-code-coverage", + "version": "5.3.2", + "version_normalized": "5.3.2.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "c89677919c5dd6d3b3852f230a663118762218ac" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac", + "reference": "c89677919c5dd6d3b3852f230a663118762218ac", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-xmlwriter": "*", + "php": "^7.0", + "phpunit/php-file-iterator": "^1.4.2", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-token-stream": "^2.0.1", + "sebastian/code-unit-reverse-lookup": "^1.0.1", + "sebastian/environment": "^3.0", + "sebastian/version": "^2.0.1", + "theseer/tokenizer": "^1.1" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "suggest": { + "ext-xdebug": "^2.5.5" + }, + "time": "2018-04-06T15:36:58+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.3.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ] + }, + { + "name": "phpunit/php-file-iterator", + "version": "1.4.5", + "version_normalized": "1.4.5.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4", + "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "time": "2017-11-27T13:52:08+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sb@sebastian-bergmann.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ] + }, + { + "name": "phpunit/php-text-template", + "version": "1.2.1", + "version_normalized": "1.2.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "time": "2015-06-21T13:50:34+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ] + }, + { + "name": "phpunit/php-timer", + "version": "1.0.9", + "version_normalized": "1.0.9.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", + "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", + "shasum": "" + }, + "require": { + "php": "^5.3.3 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" + }, + "time": "2017-02-26T11:10:40+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sb@sebastian-bergmann.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ] + }, + { + "name": "phpunit/php-token-stream", + "version": "2.0.2", + "version_normalized": "2.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-token-stream.git", + "reference": "791198a2c6254db10131eecfe8c06670700904db" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db", + "reference": "791198a2c6254db10131eecfe8c06670700904db", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.2.4" + }, + "time": "2017-11-27T05:48:46+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Wrapper around PHP's tokenizer extension.", + "homepage": "https://github.com/sebastianbergmann/php-token-stream/", + "keywords": [ + "tokenizer" + ] + }, + { + "name": "phpunit/phpunit", + "version": "6.5.13", + "version_normalized": "6.5.13.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "0973426fb012359b2f18d3bd1e90ef1172839693" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693", + "reference": "0973426fb012359b2f18d3bd1e90ef1172839693", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "myclabs/deep-copy": "^1.6.1", + "phar-io/manifest": "^1.0.1", + "phar-io/version": "^1.0", + "php": "^7.0", + "phpspec/prophecy": "^1.7", + "phpunit/php-code-coverage": "^5.3", + "phpunit/php-file-iterator": "^1.4.3", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-timer": "^1.0.9", + "phpunit/phpunit-mock-objects": "^5.0.9", + "sebastian/comparator": "^2.1", + "sebastian/diff": "^2.0", + "sebastian/environment": "^3.1", + "sebastian/exporter": "^3.1", + "sebastian/global-state": "^2.0", + "sebastian/object-enumerator": "^3.0.3", + "sebastian/resource-operations": "^1.0", + "sebastian/version": "^2.0.1" + }, + "conflict": { + "phpdocumentor/reflection-docblock": "3.0.2", + "phpunit/dbunit": "<3.0" + }, + "require-dev": { + "ext-pdo": "*" + }, + "suggest": { + "ext-xdebug": "*", + "phpunit/php-invoker": "^1.1" + }, + "time": "2018-09-08T15:10:43+00:00", + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.5.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ] + }, + { + "name": "phpunit/phpunit-mock-objects", + "version": "5.0.10", + "version_normalized": "5.0.10.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", + "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f", + "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.0.5", + "php": "^7.0", + "phpunit/php-text-template": "^1.2.1", + "sebastian/exporter": "^3.1" + }, + "conflict": { + "phpunit/phpunit": "<6.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.5.11" + }, + "suggest": { + "ext-soap": "*" + }, + "time": "2018-08-09T05:50:03+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Mock Object library for PHPUnit", + "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", + "keywords": [ + "mock", + "xunit" + ] + }, + { "name": "psr/cache", "version": "1.0.1", "version_normalized": "1.0.1.0", @@ -1090,6 +2194,587 @@ ] }, { + "name": "sebastian/code-unit-reverse-lookup", + "version": "1.0.1", + "version_normalized": "1.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.7 || ^6.0" + }, + "time": "2017-03-04T06:30:41+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/" + }, + { + "name": "sebastian/comparator", + "version": "2.1.3", + "version_normalized": "2.1.3.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9", + "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9", + "shasum": "" + }, + "require": { + "php": "^7.0", + "sebastian/diff": "^2.0 || ^3.0", + "sebastian/exporter": "^3.1" + }, + "require-dev": { + "phpunit/phpunit": "^6.4" + }, + "time": "2018-02-01T13:46:46+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ] + }, + { + "name": "sebastian/diff", + "version": "2.0.1", + "version_normalized": "2.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd", + "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.2" + }, + "time": "2017-08-03T08:09:46+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff" + ] + }, + { + "name": "sebastian/environment", + "version": "3.1.0", + "version_normalized": "3.1.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5", + "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.1" + }, + "time": "2017-07-01T08:51:00+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "http://www.github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ] + }, + { + "name": "sebastian/exporter", + "version": "3.1.0", + "version_normalized": "3.1.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "234199f4528de6d12aaa58b612e98f7d36adb937" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937", + "reference": "234199f4528de6d12aaa58b612e98f7d36adb937", + "shasum": "" + }, + "require": { + "php": "^7.0", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "ext-mbstring": "*", + "phpunit/phpunit": "^6.0" + }, + "time": "2017-04-03T13:19:02+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "http://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ] + }, + { + "name": "sebastian/global-state", + "version": "2.0.0", + "version_normalized": "2.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", + "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "suggest": { + "ext-uopz": "*" + }, + "time": "2017-04-27T15:39:26+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ] + }, + { + "name": "sebastian/object-enumerator", + "version": "3.0.3", + "version_normalized": "3.0.3.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "shasum": "" + }, + "require": { + "php": "^7.0", + "sebastian/object-reflector": "^1.1.1", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "time": "2017-08-03T12:35:26+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/" + }, + { + "name": "sebastian/object-reflector", + "version": "1.1.1", + "version_normalized": "1.1.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "773f97c67f28de00d397be301821b06708fca0be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", + "reference": "773f97c67f28de00d397be301821b06708fca0be", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "time": "2017-03-29T09:07:27+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/" + }, + { + "name": "sebastian/recursion-context", + "version": "3.0.0", + "version_normalized": "3.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "time": "2017-03-03T06:23:57+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "http://www.github.com/sebastianbergmann/recursion-context" + }, + { + "name": "sebastian/resource-operations", + "version": "1.0.0", + "version_normalized": "1.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/resource-operations.git", + "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", + "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", + "shasum": "" + }, + "require": { + "php": ">=5.6.0" + }, + "time": "2015-07-28T20:34:47+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations" + }, + { + "name": "sebastian/version", + "version": "2.0.1", + "version_normalized": "2.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "time": "2016-10-03T07:35:21+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version" + }, + { "name": "swiftmailer/swiftmailer", "version": "v5.4.12", "version_normalized": "5.4.12.0", @@ -1218,6 +2903,143 @@ ] }, { + "name": "symfony/config", + "version": "v3.4.15", + "version_normalized": "3.4.15.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/config.git", + "reference": "7b08223b7f6abd859651c56bcabf900d1627d085" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/config/zipball/7b08223b7f6abd859651c56bcabf900d1627d085", + "reference": "7b08223b7f6abd859651c56bcabf900d1627d085", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/filesystem": "~2.8|~3.0|~4.0", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "symfony/dependency-injection": "<3.3", + "symfony/finder": "<3.3" + }, + "require-dev": { + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/event-dispatcher": "~3.3|~4.0", + "symfony/finder": "~3.3|~4.0", + "symfony/yaml": "~3.0|~4.0" + }, + "suggest": { + "symfony/yaml": "To use the yaml reference dumper" + }, + "time": "2018-07-26T11:19:56+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Symfony\\Component\\Config\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Config Component", + "homepage": "https://symfony.com" + }, + { + "name": "symfony/console", + "version": "v3.4.15", + "version_normalized": "3.4.15.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "6b217594552b9323bcdcfc14f8a0ce126e84cd73" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/6b217594552b9323bcdcfc14f8a0ce126e84cd73", + "reference": "6b217594552b9323bcdcfc14f8a0ce126e84cd73", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/debug": "~2.8|~3.0|~4.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/dependency-injection": "<3.4", + "symfony/process": "<3.3" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "~3.3|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/event-dispatcher": "~2.8|~3.0|~4.0", + "symfony/lock": "~3.4|~4.0", + "symfony/process": "~3.3|~4.0" + }, + "suggest": { + "psr/log-implementation": "For using the console logger", + "symfony/event-dispatcher": "", + "symfony/lock": "", + "symfony/process": "" + }, + "time": "2018-07-26T11:19:56+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Console Component", + "homepage": "https://symfony.com" + }, + { "name": "symfony/debug", "version": "v3.4.15", "version_normalized": "3.4.15.0", @@ -1393,6 +3215,58 @@ "homepage": "https://symfony.com" }, { + "name": "symfony/filesystem", + "version": "v3.4.15", + "version_normalized": "3.4.15.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/filesystem.git", + "reference": "285ce5005cb01a0aeaa5b0cf590bd0cc40bb631c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/285ce5005cb01a0aeaa5b0cf590bd0cc40bb631c", + "reference": "285ce5005cb01a0aeaa5b0cf590bd0cc40bb631c", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8" + }, + "time": "2018-08-10T07:29:05+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Symfony\\Component\\Filesystem\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Filesystem Component", + "homepage": "https://symfony.com" + }, + { "name": "symfony/http-foundation", "version": "v3.4.15", "version_normalized": "3.4.15.0", @@ -1894,6 +3768,189 @@ ] }, { + "name": "symfony/stopwatch", + "version": "v3.4.15", + "version_normalized": "3.4.15.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/stopwatch.git", + "reference": "deda2765e8dab2fc38492e926ea690f2a681f59d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/deda2765e8dab2fc38492e926ea690f2a681f59d", + "reference": "deda2765e8dab2fc38492e926ea690f2a681f59d", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8" + }, + "time": "2018-07-26T10:03:52+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Symfony\\Component\\Stopwatch\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Stopwatch Component", + "homepage": "https://symfony.com" + }, + { + "name": "symfony/var-dumper", + "version": "v3.4.15", + "version_normalized": "3.4.15.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "f62a394bd3de96f2f5e8f4c7d685035897fb3cb3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f62a394bd3de96f2f5e8f4c7d685035897fb3cb3", + "reference": "f62a394bd3de96f2f5e8f4c7d685035897fb3cb3", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" + }, + "require-dev": { + "ext-iconv": "*", + "twig/twig": "~1.34|~2.4" + }, + "suggest": { + "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", + "ext-intl": "To show region name in time zone dump", + "ext-symfony_debug": "" + }, + "time": "2018-07-26T11:19:56+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "installation-source": "dist", + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony mechanism for exploring and dumping PHP variables", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ] + }, + { + "name": "symfony/yaml", + "version": "v3.4.15", + "version_normalized": "3.4.15.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "c2f4812ead9f847cb69e90917ca7502e6892d6b8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/c2f4812ead9f847cb69e90917ca7502e6892d6b8", + "reference": "c2f4812ead9f847cb69e90917ca7502e6892d6b8", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "symfony/console": "<3.4" + }, + "require-dev": { + "symfony/console": "~3.4|~4.0" + }, + "suggest": { + "symfony/console": "For validating YAML files using the lint command" + }, + "time": "2018-08-10T07:34:36+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Yaml Component", + "homepage": "https://symfony.com" + }, + { "name": "tecnickcom/tcpdf", "version": "6.2.25", "version_normalized": "6.2.25.0", @@ -1958,6 +4015,100 @@ ] }, { + "name": "theseer/tokenizer", + "version": "1.1.0", + "version_normalized": "1.1.0.0", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b", + "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.0" + }, + "time": "2017-04-07T12:08:54+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats" + }, + { + "name": "webmozart/assert", + "version": "1.3.0", + "version_normalized": "1.3.0.0", + "source": { + "type": "git", + "url": "https://github.com/webmozart/assert.git", + "reference": "0df1908962e7a3071564e857d86874dad1ef204a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a", + "reference": "0df1908962e7a3071564e857d86874dad1ef204a", + "shasum": "" + }, + "require": { + "php": "^5.3.3 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.6", + "sebastian/version": "^1.0.1" + }, + "time": "2018-01-29T19:49:41+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ] + }, + { "name": "webuni/commonmark-table-extension", "version": "0.8.0", "version_normalized": "0.8.0.0", |
