diff options
| -rw-r--r-- | app/GedcomCode/GedcomCodeAdop.php | 54 | ||||
| -rw-r--r-- | tests/app/GedcomCode/GedcomCodeAdopTest.php | 40 |
2 files changed, 0 insertions, 94 deletions
diff --git a/app/GedcomCode/GedcomCodeAdop.php b/app/GedcomCode/GedcomCodeAdop.php deleted file mode 100644 index c04f1c9cff..0000000000 --- a/app/GedcomCode/GedcomCodeAdop.php +++ /dev/null @@ -1,54 +0,0 @@ -<?php - -/** - * webtrees: online genealogy - * Copyright (C) 2021 webtrees development team - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <https://www.gnu.org/licenses/>. - */ - -declare(strict_types=1); - -namespace Fisharebest\Webtrees\GedcomCode; - -use Fisharebest\Webtrees\I18N; - -/** - * Class GedcomCodeAdop - Functions and logic for GEDCOM "ADOP" codes - */ -class GedcomCodeAdop -{ - /** - * Translate a code, for an (optional) record - * - * @param string $type - * - * @return string - */ - public static function getValue(string $type): string - { - return self::getValues()[$type] ?? e($type); - } - - /** - * A list of all possible values for PEDI - * - * @return array<string> - */ - public static function getValues(): array - { - return [ - 'BOTH' => I18N::translate('Adopted by both parents'), - 'HUSB' => I18N::translate('Adopted by father'), - 'WIFE' => I18N::translate('Adopted by mother'), - ]; - } -} diff --git a/tests/app/GedcomCode/GedcomCodeAdopTest.php b/tests/app/GedcomCode/GedcomCodeAdopTest.php deleted file mode 100644 index 87a8d57e99..0000000000 --- a/tests/app/GedcomCode/GedcomCodeAdopTest.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php - -/** - * webtrees: online genealogy - * Copyright (C) 2021 webtrees development team - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <https://www.gnu.org/licenses/>. - */ - -declare(strict_types=1); - -namespace Fisharebest\Webtrees\GedcomCode; - -use Fisharebest\Webtrees\TestCase; - -/** - * Test harness for the class GedcomCodeAdop - * - * @covers \Fisharebest\Webtrees\GedcomCode\GedcomCodeAdop - */ -class GedcomCodeAdopTest extends TestCase -{ - /** - * Test that the class exists - * - * @return void - */ - public function testClassExists(): void - { - self::assertTrue(class_exists(GedcomCodeAdop::class)); - } -} |
