1d5b0584dSGreg Roach<?php 2d5b0584dSGreg Roach 3d5b0584dSGreg Roach/** 4d5b0584dSGreg Roach * webtrees: online genealogy 5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 6d5b0584dSGreg Roach * This program is free software: you can redistribute it and/or modify 7d5b0584dSGreg Roach * it under the terms of the GNU General Public License as published by 8d5b0584dSGreg Roach * the Free Software Foundation, either version 3 of the License, or 9d5b0584dSGreg Roach * (at your option) any later version. 10d5b0584dSGreg Roach * This program is distributed in the hope that it will be useful, 11d5b0584dSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12d5b0584dSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13d5b0584dSGreg Roach * GNU General Public License for more details. 14d5b0584dSGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16d5b0584dSGreg Roach */ 17d5b0584dSGreg Roach 18d5b0584dSGreg Roachdeclare(strict_types=1); 19d5b0584dSGreg Roach 20d5b0584dSGreg Roachnamespace Fisharebest\Webtrees\Census; 21d5b0584dSGreg Roach 22d5b0584dSGreg Roach/** 23d5b0584dSGreg Roach * Relationship to head of household. 24d5b0584dSGreg Roach */ 25d5b0584dSGreg Roachclass CensusColumnRelationToHeadEnglish extends CensusColumnRelationToHead 26d5b0584dSGreg Roach{ 27*e873f434SGreg Roach protected const string HEAD_OF_HOUSEHOLD = 'head'; 28d5b0584dSGreg Roach} 29