diff options
Diffstat (limited to 'app')
418 files changed, 674 insertions, 0 deletions
diff --git a/app/Auth.php b/app/Auth.php index 5101491dfd..58417e7d43 100644 --- a/app/Auth.php +++ b/app/Auth.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use stdClass; diff --git a/app/Bootstrap4.php b/app/Bootstrap4.php index 7e9ddf98e7..b130e65f64 100644 --- a/app/Bootstrap4.php +++ b/app/Bootstrap4.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; /** diff --git a/app/Census/AbstractCensusColumn.php b/app/Census/AbstractCensusColumn.php index 062a1e135d..efccb0e464 100644 --- a/app/Census/AbstractCensusColumn.php +++ b/app/Census/AbstractCensusColumn.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/AbstractCensusColumnCondition.php b/app/Census/AbstractCensusColumnCondition.php index 01904d487e..e0eabd7c8a 100644 --- a/app/Census/AbstractCensusColumnCondition.php +++ b/app/Census/AbstractCensusColumnCondition.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/Census.php b/app/Census/Census.php index 87901b8a0f..36d7d45a7f 100644 --- a/app/Census/Census.php +++ b/app/Census/Census.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnAge.php b/app/Census/CensusColumnAge.php index 0137438e16..2858824313 100644 --- a/app/Census/CensusColumnAge.php +++ b/app/Census/CensusColumnAge.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnAgeFemale.php b/app/Census/CensusColumnAgeFemale.php index 42bbe34bfc..57183f5639 100644 --- a/app/Census/CensusColumnAgeFemale.php +++ b/app/Census/CensusColumnAgeFemale.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnAgeFemale5Years.php b/app/Census/CensusColumnAgeFemale5Years.php index 34b34a7b44..8f06cbb8c7 100644 --- a/app/Census/CensusColumnAgeFemale5Years.php +++ b/app/Census/CensusColumnAgeFemale5Years.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnAgeMale.php b/app/Census/CensusColumnAgeMale.php index e488d740bb..81ef81e0e7 100644 --- a/app/Census/CensusColumnAgeMale.php +++ b/app/Census/CensusColumnAgeMale.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnAgeMale5Years.php b/app/Census/CensusColumnAgeMale5Years.php index 6d94312783..19112eb0fc 100644 --- a/app/Census/CensusColumnAgeMale5Years.php +++ b/app/Census/CensusColumnAgeMale5Years.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnAgeMarried.php b/app/Census/CensusColumnAgeMarried.php index d49082d8e9..b4902d4c07 100644 --- a/app/Census/CensusColumnAgeMarried.php +++ b/app/Census/CensusColumnAgeMarried.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnBirthDate.php b/app/Census/CensusColumnBirthDate.php index dc20a2f6c2..bba78729e9 100644 --- a/app/Census/CensusColumnBirthDate.php +++ b/app/Census/CensusColumnBirthDate.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnBirthDay.php b/app/Census/CensusColumnBirthDay.php index 09621f13e5..6c58720a87 100644 --- a/app/Census/CensusColumnBirthDay.php +++ b/app/Census/CensusColumnBirthDay.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnBirthDayDotMonthYear.php b/app/Census/CensusColumnBirthDayDotMonthYear.php index a3609056d8..dbb540a462 100644 --- a/app/Census/CensusColumnBirthDayDotMonthYear.php +++ b/app/Census/CensusColumnBirthDayDotMonthYear.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnBirthDayMonthSlashYear.php b/app/Census/CensusColumnBirthDayMonthSlashYear.php index af4e88e75d..48548f1a96 100644 --- a/app/Census/CensusColumnBirthDayMonthSlashYear.php +++ b/app/Census/CensusColumnBirthDayMonthSlashYear.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnBirthDaySlashMonth.php b/app/Census/CensusColumnBirthDaySlashMonth.php index 47c77bcd25..10387f70f1 100644 --- a/app/Census/CensusColumnBirthDaySlashMonth.php +++ b/app/Census/CensusColumnBirthDaySlashMonth.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnBirthDaySlashMonthYear.php b/app/Census/CensusColumnBirthDaySlashMonthYear.php index 7c95a3d17e..08e31eeae0 100644 --- a/app/Census/CensusColumnBirthDaySlashMonthYear.php +++ b/app/Census/CensusColumnBirthDaySlashMonthYear.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnBirthMonth.php b/app/Census/CensusColumnBirthMonth.php index 02bac9d300..93bf7a89f9 100644 --- a/app/Census/CensusColumnBirthMonth.php +++ b/app/Census/CensusColumnBirthMonth.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnBirthPlace.php b/app/Census/CensusColumnBirthPlace.php index 5cc55afb60..dec6b5f33b 100644 --- a/app/Census/CensusColumnBirthPlace.php +++ b/app/Census/CensusColumnBirthPlace.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnBirthPlaceSimple.php b/app/Census/CensusColumnBirthPlaceSimple.php index 05ba91e4f7..6a8e871ecb 100644 --- a/app/Census/CensusColumnBirthPlaceSimple.php +++ b/app/Census/CensusColumnBirthPlaceSimple.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnBirthYear.php b/app/Census/CensusColumnBirthYear.php index d37663128c..b91a89d7a0 100644 --- a/app/Census/CensusColumnBirthYear.php +++ b/app/Census/CensusColumnBirthYear.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnBornForeignParts.php b/app/Census/CensusColumnBornForeignParts.php index bcf2edc9cd..6524126133 100644 --- a/app/Census/CensusColumnBornForeignParts.php +++ b/app/Census/CensusColumnBornForeignParts.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnChildrenBornAlive.php b/app/Census/CensusColumnChildrenBornAlive.php index 11fd7d63bc..4fc959c7f2 100644 --- a/app/Census/CensusColumnChildrenBornAlive.php +++ b/app/Census/CensusColumnChildrenBornAlive.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnChildrenDied.php b/app/Census/CensusColumnChildrenDied.php index 060ca8343b..377ddd7e6c 100644 --- a/app/Census/CensusColumnChildrenDied.php +++ b/app/Census/CensusColumnChildrenDied.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnChildrenLiving.php b/app/Census/CensusColumnChildrenLiving.php index fee970f8d2..eac70d86be 100644 --- a/app/Census/CensusColumnChildrenLiving.php +++ b/app/Census/CensusColumnChildrenLiving.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnConditionDanish.php b/app/Census/CensusColumnConditionDanish.php index 5499c428fa..9abdebdc03 100644 --- a/app/Census/CensusColumnConditionDanish.php +++ b/app/Census/CensusColumnConditionDanish.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnConditionEnglish.php b/app/Census/CensusColumnConditionEnglish.php index 1fd11e4632..43213c86de 100644 --- a/app/Census/CensusColumnConditionEnglish.php +++ b/app/Census/CensusColumnConditionEnglish.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnConditionFrenchFemme.php b/app/Census/CensusColumnConditionFrenchFemme.php index df7e51d42b..39a2dd6fca 100644 --- a/app/Census/CensusColumnConditionFrenchFemme.php +++ b/app/Census/CensusColumnConditionFrenchFemme.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnConditionFrenchFille.php b/app/Census/CensusColumnConditionFrenchFille.php index b45d63f58d..85f04ec73b 100644 --- a/app/Census/CensusColumnConditionFrenchFille.php +++ b/app/Census/CensusColumnConditionFrenchFille.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnConditionFrenchGarcon.php b/app/Census/CensusColumnConditionFrenchGarcon.php index 3327c70a8c..d2b323d0e5 100644 --- a/app/Census/CensusColumnConditionFrenchGarcon.php +++ b/app/Census/CensusColumnConditionFrenchGarcon.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnConditionFrenchHomme.php b/app/Census/CensusColumnConditionFrenchHomme.php index c139300ea5..9c57887112 100644 --- a/app/Census/CensusColumnConditionFrenchHomme.php +++ b/app/Census/CensusColumnConditionFrenchHomme.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnConditionFrenchVeuf.php b/app/Census/CensusColumnConditionFrenchVeuf.php index 1311b3547f..244e1d59a3 100644 --- a/app/Census/CensusColumnConditionFrenchVeuf.php +++ b/app/Census/CensusColumnConditionFrenchVeuf.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnConditionFrenchVeuve.php b/app/Census/CensusColumnConditionFrenchVeuve.php index c52e319cab..e61143ed59 100644 --- a/app/Census/CensusColumnConditionFrenchVeuve.php +++ b/app/Census/CensusColumnConditionFrenchVeuve.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnConditionUs.php b/app/Census/CensusColumnConditionUs.php index efc6dab25a..5a5f7bf024 100644 --- a/app/Census/CensusColumnConditionUs.php +++ b/app/Census/CensusColumnConditionUs.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnFatherBirthPlace.php b/app/Census/CensusColumnFatherBirthPlace.php index 6bac0e1bb7..eecaad8f91 100644 --- a/app/Census/CensusColumnFatherBirthPlace.php +++ b/app/Census/CensusColumnFatherBirthPlace.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnFatherBirthPlaceSimple.php b/app/Census/CensusColumnFatherBirthPlaceSimple.php index 6735b81246..827e8edbaf 100644 --- a/app/Census/CensusColumnFatherBirthPlaceSimple.php +++ b/app/Census/CensusColumnFatherBirthPlaceSimple.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnFatherForeign.php b/app/Census/CensusColumnFatherForeign.php index fa5eaf6440..5e8068cd98 100644 --- a/app/Census/CensusColumnFatherForeign.php +++ b/app/Census/CensusColumnFatherForeign.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnFullName.php b/app/Census/CensusColumnFullName.php index 1066483fcd..9fe01c83b9 100644 --- a/app/Census/CensusColumnFullName.php +++ b/app/Census/CensusColumnFullName.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnGivenNameInitial.php b/app/Census/CensusColumnGivenNameInitial.php index a6dbf7d82c..3ba981aed0 100644 --- a/app/Census/CensusColumnGivenNameInitial.php +++ b/app/Census/CensusColumnGivenNameInitial.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnGivenNames.php b/app/Census/CensusColumnGivenNames.php index bb62fb3eed..07c1416a46 100644 --- a/app/Census/CensusColumnGivenNames.php +++ b/app/Census/CensusColumnGivenNames.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnInterface.php b/app/Census/CensusColumnInterface.php index 8fcb1775fa..a72beac76a 100644 --- a/app/Census/CensusColumnInterface.php +++ b/app/Census/CensusColumnInterface.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnMarriedWithinYear.php b/app/Census/CensusColumnMarriedWithinYear.php index 0a58893ddd..be327ccf9f 100644 --- a/app/Census/CensusColumnMarriedWithinYear.php +++ b/app/Census/CensusColumnMarriedWithinYear.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnMonthIfBornWithinYear.php b/app/Census/CensusColumnMonthIfBornWithinYear.php index 5949abbb5b..d5e36abc3a 100644 --- a/app/Census/CensusColumnMonthIfBornWithinYear.php +++ b/app/Census/CensusColumnMonthIfBornWithinYear.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnMonthIfMarriedWithinYear.php b/app/Census/CensusColumnMonthIfMarriedWithinYear.php index 2bcc5ec9de..52f9e75ab8 100644 --- a/app/Census/CensusColumnMonthIfMarriedWithinYear.php +++ b/app/Census/CensusColumnMonthIfMarriedWithinYear.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnMotherBirthPlace.php b/app/Census/CensusColumnMotherBirthPlace.php index a9aa2b5aa9..ac928ddd95 100644 --- a/app/Census/CensusColumnMotherBirthPlace.php +++ b/app/Census/CensusColumnMotherBirthPlace.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnMotherBirthPlaceSimple.php b/app/Census/CensusColumnMotherBirthPlaceSimple.php index 57da9dd46d..054c245d9d 100644 --- a/app/Census/CensusColumnMotherBirthPlaceSimple.php +++ b/app/Census/CensusColumnMotherBirthPlaceSimple.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnMotherForeign.php b/app/Census/CensusColumnMotherForeign.php index 4d292e678a..765dcc76e7 100644 --- a/app/Census/CensusColumnMotherForeign.php +++ b/app/Census/CensusColumnMotherForeign.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnNationality.php b/app/Census/CensusColumnNationality.php index ca807a82c4..10f3ad6c91 100644 --- a/app/Census/CensusColumnNationality.php +++ b/app/Census/CensusColumnNationality.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnNull.php b/app/Census/CensusColumnNull.php index 0480120c73..e1256b7ed1 100644 --- a/app/Census/CensusColumnNull.php +++ b/app/Census/CensusColumnNull.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnOccupation.php b/app/Census/CensusColumnOccupation.php index 0020a70ea5..ad6612aa19 100644 --- a/app/Census/CensusColumnOccupation.php +++ b/app/Census/CensusColumnOccupation.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnRelationToHead.php b/app/Census/CensusColumnRelationToHead.php index 8100de3911..bf2fd2a4b0 100644 --- a/app/Census/CensusColumnRelationToHead.php +++ b/app/Census/CensusColumnRelationToHead.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnRelationToHeadGerman.php b/app/Census/CensusColumnRelationToHeadGerman.php index a643f6edb8..a0a070591d 100644 --- a/app/Census/CensusColumnRelationToHeadGerman.php +++ b/app/Census/CensusColumnRelationToHeadGerman.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnReligion.php b/app/Census/CensusColumnReligion.php index e54f4f2d9f..b05460433c 100644 --- a/app/Census/CensusColumnReligion.php +++ b/app/Census/CensusColumnReligion.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnSexMF.php b/app/Census/CensusColumnSexMF.php index bae6507d13..75e5e39ba1 100644 --- a/app/Census/CensusColumnSexMF.php +++ b/app/Census/CensusColumnSexMF.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnSexMK.php b/app/Census/CensusColumnSexMK.php index 5742df2bf7..79229f7062 100644 --- a/app/Census/CensusColumnSexMK.php +++ b/app/Census/CensusColumnSexMK.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnSexMZ.php b/app/Census/CensusColumnSexMZ.php index d88f13bfbd..c85b4adbb4 100644 --- a/app/Census/CensusColumnSexMZ.php +++ b/app/Census/CensusColumnSexMZ.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnSurname.php b/app/Census/CensusColumnSurname.php index 76ceb0a75a..3bb9d87a25 100644 --- a/app/Census/CensusColumnSurname.php +++ b/app/Census/CensusColumnSurname.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnSurnameGivenNameInitial.php b/app/Census/CensusColumnSurnameGivenNameInitial.php index 7e702935b7..f716b81d20 100644 --- a/app/Census/CensusColumnSurnameGivenNameInitial.php +++ b/app/Census/CensusColumnSurnameGivenNameInitial.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnSurnameGivenNames.php b/app/Census/CensusColumnSurnameGivenNames.php index 5de0a3b469..e234fc6938 100644 --- a/app/Census/CensusColumnSurnameGivenNames.php +++ b/app/Census/CensusColumnSurnameGivenNames.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusColumnYearsMarried.php b/app/Census/CensusColumnYearsMarried.php index c62e022a10..cd46e2f2d2 100644 --- a/app/Census/CensusColumnYearsMarried.php +++ b/app/Census/CensusColumnYearsMarried.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusInterface.php b/app/Census/CensusInterface.php index abd729c784..bd1878159e 100644 --- a/app/Census/CensusInterface.php +++ b/app/Census/CensusInterface.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfCzechRepublic.php b/app/Census/CensusOfCzechRepublic.php index b7bd967679..014a4b364d 100644 --- a/app/Census/CensusOfCzechRepublic.php +++ b/app/Census/CensusOfCzechRepublic.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfCzechRepublic1880.php b/app/Census/CensusOfCzechRepublic1880.php index ebc9a5ec93..36d8345a1e 100644 --- a/app/Census/CensusOfCzechRepublic1880.php +++ b/app/Census/CensusOfCzechRepublic1880.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfCzechRepublic1890.php b/app/Census/CensusOfCzechRepublic1890.php index 948b629def..25fe4267e7 100644 --- a/app/Census/CensusOfCzechRepublic1890.php +++ b/app/Census/CensusOfCzechRepublic1890.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Census; /** diff --git a/app/Census/CensusOfCzechRepublic1900.php b/app/Census/CensusOfCzechRepublic1900.php index d64fc9f0cb..5adb6dc827 100644 --- a/app/Census/CensusOfCzechRepublic1900.php +++ b/app/Census/CensusOfCzechRepublic1900.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Census; /** diff --git a/app/Census/CensusOfCzechRepublic1910.php b/app/Census/CensusOfCzechRepublic1910.php index f509cefd31..080af030cb 100644 --- a/app/Census/CensusOfCzechRepublic1910.php +++ b/app/Census/CensusOfCzechRepublic1910.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Census; /** diff --git a/app/Census/CensusOfCzechRepublic1921.php b/app/Census/CensusOfCzechRepublic1921.php index 195427e6ea..da38178408 100644 --- a/app/Census/CensusOfCzechRepublic1921.php +++ b/app/Census/CensusOfCzechRepublic1921.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark.php b/app/Census/CensusOfDenmark.php index 6a7c04d216..4d67e2682d 100644 --- a/app/Census/CensusOfDenmark.php +++ b/app/Census/CensusOfDenmark.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1787.php b/app/Census/CensusOfDenmark1787.php index 3837714ce0..d439967bad 100644 --- a/app/Census/CensusOfDenmark1787.php +++ b/app/Census/CensusOfDenmark1787.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1801.php b/app/Census/CensusOfDenmark1801.php index f74937a932..afb13906fb 100644 --- a/app/Census/CensusOfDenmark1801.php +++ b/app/Census/CensusOfDenmark1801.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1803.php b/app/Census/CensusOfDenmark1803.php index 0ac1b755e3..e3274dc323 100644 --- a/app/Census/CensusOfDenmark1803.php +++ b/app/Census/CensusOfDenmark1803.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1834.php b/app/Census/CensusOfDenmark1834.php index c155172573..2a50127839 100644 --- a/app/Census/CensusOfDenmark1834.php +++ b/app/Census/CensusOfDenmark1834.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1835.php b/app/Census/CensusOfDenmark1835.php index f78a737c0f..4e8cd03140 100644 --- a/app/Census/CensusOfDenmark1835.php +++ b/app/Census/CensusOfDenmark1835.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1840.php b/app/Census/CensusOfDenmark1840.php index f0f58319e7..8cf49abb4e 100644 --- a/app/Census/CensusOfDenmark1840.php +++ b/app/Census/CensusOfDenmark1840.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1845.php b/app/Census/CensusOfDenmark1845.php index 9bc7f05904..77cdc62ad2 100644 --- a/app/Census/CensusOfDenmark1845.php +++ b/app/Census/CensusOfDenmark1845.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1850.php b/app/Census/CensusOfDenmark1850.php index 03d0d48457..c96db4e6f4 100644 --- a/app/Census/CensusOfDenmark1850.php +++ b/app/Census/CensusOfDenmark1850.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1855.php b/app/Census/CensusOfDenmark1855.php index f506df2ec7..8d1ea0ad03 100644 --- a/app/Census/CensusOfDenmark1855.php +++ b/app/Census/CensusOfDenmark1855.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1860.php b/app/Census/CensusOfDenmark1860.php index 000c69acb8..1ae64fe48d 100644 --- a/app/Census/CensusOfDenmark1860.php +++ b/app/Census/CensusOfDenmark1860.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1870.php b/app/Census/CensusOfDenmark1870.php index 0f5e397ce5..921310dd02 100644 --- a/app/Census/CensusOfDenmark1870.php +++ b/app/Census/CensusOfDenmark1870.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1880.php b/app/Census/CensusOfDenmark1880.php index d00d1ef140..2238d6eaca 100644 --- a/app/Census/CensusOfDenmark1880.php +++ b/app/Census/CensusOfDenmark1880.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1885.php b/app/Census/CensusOfDenmark1885.php index 2631db5e66..f6b5dffa37 100644 --- a/app/Census/CensusOfDenmark1885.php +++ b/app/Census/CensusOfDenmark1885.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1890.php b/app/Census/CensusOfDenmark1890.php index 01f89c33ca..3d850c9c42 100644 --- a/app/Census/CensusOfDenmark1890.php +++ b/app/Census/CensusOfDenmark1890.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1901.php b/app/Census/CensusOfDenmark1901.php index 1b62c05bc0..0e8caa3bd4 100644 --- a/app/Census/CensusOfDenmark1901.php +++ b/app/Census/CensusOfDenmark1901.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1906.php b/app/Census/CensusOfDenmark1906.php index d7019fc1ae..5bcf5de659 100644 --- a/app/Census/CensusOfDenmark1906.php +++ b/app/Census/CensusOfDenmark1906.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1911.php b/app/Census/CensusOfDenmark1911.php index bb8047fdae..94031440d8 100644 --- a/app/Census/CensusOfDenmark1911.php +++ b/app/Census/CensusOfDenmark1911.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1916.php b/app/Census/CensusOfDenmark1916.php index cda21d86f8..d3980bd170 100644 --- a/app/Census/CensusOfDenmark1916.php +++ b/app/Census/CensusOfDenmark1916.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1921.php b/app/Census/CensusOfDenmark1921.php index 28a1d18155..16153d7f99 100644 --- a/app/Census/CensusOfDenmark1921.php +++ b/app/Census/CensusOfDenmark1921.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1925.php b/app/Census/CensusOfDenmark1925.php index 65f8ca3b5e..f683cbad47 100644 --- a/app/Census/CensusOfDenmark1925.php +++ b/app/Census/CensusOfDenmark1925.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1930.php b/app/Census/CensusOfDenmark1930.php index 9e8192b9f3..e3a0935dfe 100644 --- a/app/Census/CensusOfDenmark1930.php +++ b/app/Census/CensusOfDenmark1930.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDenmark1940.php b/app/Census/CensusOfDenmark1940.php index 65172542d7..933768a3bd 100644 --- a/app/Census/CensusOfDenmark1940.php +++ b/app/Census/CensusOfDenmark1940.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDeutschland.php b/app/Census/CensusOfDeutschland.php index ff09ae1570..7a514b7575 100644 --- a/app/Census/CensusOfDeutschland.php +++ b/app/Census/CensusOfDeutschland.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDeutschland1819.php b/app/Census/CensusOfDeutschland1819.php index f99fa2470a..88ab325a22 100644 --- a/app/Census/CensusOfDeutschland1819.php +++ b/app/Census/CensusOfDeutschland1819.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDeutschland1867.php b/app/Census/CensusOfDeutschland1867.php index 3fd384c3d7..e27f67c0b3 100644 --- a/app/Census/CensusOfDeutschland1867.php +++ b/app/Census/CensusOfDeutschland1867.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDeutschland1900.php b/app/Census/CensusOfDeutschland1900.php index a61cb59460..e049c695b0 100644 --- a/app/Census/CensusOfDeutschland1900.php +++ b/app/Census/CensusOfDeutschland1900.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDeutschland1919.php b/app/Census/CensusOfDeutschland1919.php index 5adb0f2067..e7424b6c9a 100644 --- a/app/Census/CensusOfDeutschland1919.php +++ b/app/Census/CensusOfDeutschland1919.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfDeutschlandNL1867.php b/app/Census/CensusOfDeutschlandNL1867.php index 6961c643d0..5c005b3617 100644 --- a/app/Census/CensusOfDeutschlandNL1867.php +++ b/app/Census/CensusOfDeutschlandNL1867.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfEngland.php b/app/Census/CensusOfEngland.php index fd8dc99439..e095924880 100644 --- a/app/Census/CensusOfEngland.php +++ b/app/Census/CensusOfEngland.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfEngland1841.php b/app/Census/CensusOfEngland1841.php index e3ffdb0bbc..de9be45a4e 100644 --- a/app/Census/CensusOfEngland1841.php +++ b/app/Census/CensusOfEngland1841.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfEngland1851.php b/app/Census/CensusOfEngland1851.php index 269bf4451e..2f1cf4cc3e 100644 --- a/app/Census/CensusOfEngland1851.php +++ b/app/Census/CensusOfEngland1851.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfEngland1861.php b/app/Census/CensusOfEngland1861.php index 8c9942695c..6510778cf8 100644 --- a/app/Census/CensusOfEngland1861.php +++ b/app/Census/CensusOfEngland1861.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfEngland1871.php b/app/Census/CensusOfEngland1871.php index a800fc0d35..780173ea3f 100644 --- a/app/Census/CensusOfEngland1871.php +++ b/app/Census/CensusOfEngland1871.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfEngland1881.php b/app/Census/CensusOfEngland1881.php index d46504b1db..5d8bc62b4d 100644 --- a/app/Census/CensusOfEngland1881.php +++ b/app/Census/CensusOfEngland1881.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfEngland1891.php b/app/Census/CensusOfEngland1891.php index 22d65d3d4c..aabe00d790 100644 --- a/app/Census/CensusOfEngland1891.php +++ b/app/Census/CensusOfEngland1891.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfEngland1901.php b/app/Census/CensusOfEngland1901.php index ee65f56e3e..3de95d89bb 100644 --- a/app/Census/CensusOfEngland1901.php +++ b/app/Census/CensusOfEngland1901.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfEngland1911.php b/app/Census/CensusOfEngland1911.php index 24d12da31f..74b08c4a27 100644 --- a/app/Census/CensusOfEngland1911.php +++ b/app/Census/CensusOfEngland1911.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance.php b/app/Census/CensusOfFrance.php index 0b4facdebd..e2fe091131 100644 --- a/app/Census/CensusOfFrance.php +++ b/app/Census/CensusOfFrance.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1831.php b/app/Census/CensusOfFrance1831.php index d9af03b5ea..3ad1f29f64 100644 --- a/app/Census/CensusOfFrance1831.php +++ b/app/Census/CensusOfFrance1831.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1836.php b/app/Census/CensusOfFrance1836.php index 5f8ff30490..a0c4358882 100644 --- a/app/Census/CensusOfFrance1836.php +++ b/app/Census/CensusOfFrance1836.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1841.php b/app/Census/CensusOfFrance1841.php index 6bfebb9afe..f2004706ae 100644 --- a/app/Census/CensusOfFrance1841.php +++ b/app/Census/CensusOfFrance1841.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1846.php b/app/Census/CensusOfFrance1846.php index 5cbc204007..f703aac2a2 100644 --- a/app/Census/CensusOfFrance1846.php +++ b/app/Census/CensusOfFrance1846.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1851.php b/app/Census/CensusOfFrance1851.php index 056e4ed7e4..e80ade7c51 100644 --- a/app/Census/CensusOfFrance1851.php +++ b/app/Census/CensusOfFrance1851.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1856.php b/app/Census/CensusOfFrance1856.php index 5b82c67757..f4e3b43e39 100644 --- a/app/Census/CensusOfFrance1856.php +++ b/app/Census/CensusOfFrance1856.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1861.php b/app/Census/CensusOfFrance1861.php index f7a215f3bf..0397d0ec3b 100644 --- a/app/Census/CensusOfFrance1861.php +++ b/app/Census/CensusOfFrance1861.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1866.php b/app/Census/CensusOfFrance1866.php index ab30be205d..70bd01154a 100644 --- a/app/Census/CensusOfFrance1866.php +++ b/app/Census/CensusOfFrance1866.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1872.php b/app/Census/CensusOfFrance1872.php index 2ec77b2783..06fcaa9e3b 100644 --- a/app/Census/CensusOfFrance1872.php +++ b/app/Census/CensusOfFrance1872.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1876.php b/app/Census/CensusOfFrance1876.php index dcd9f02685..9cf5b38e28 100644 --- a/app/Census/CensusOfFrance1876.php +++ b/app/Census/CensusOfFrance1876.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1881.php b/app/Census/CensusOfFrance1881.php index d4100550ff..a65fd897aa 100644 --- a/app/Census/CensusOfFrance1881.php +++ b/app/Census/CensusOfFrance1881.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1886.php b/app/Census/CensusOfFrance1886.php index 108ba3dc5c..627f044f58 100644 --- a/app/Census/CensusOfFrance1886.php +++ b/app/Census/CensusOfFrance1886.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1891.php b/app/Census/CensusOfFrance1891.php index 4bcc03e603..165684abe7 100644 --- a/app/Census/CensusOfFrance1891.php +++ b/app/Census/CensusOfFrance1891.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1896.php b/app/Census/CensusOfFrance1896.php index d14c35113e..f80a606b8f 100644 --- a/app/Census/CensusOfFrance1896.php +++ b/app/Census/CensusOfFrance1896.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1901.php b/app/Census/CensusOfFrance1901.php index 13b329303c..b4529eff03 100644 --- a/app/Census/CensusOfFrance1901.php +++ b/app/Census/CensusOfFrance1901.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1906.php b/app/Census/CensusOfFrance1906.php index 88b108062d..38c6a0aad4 100644 --- a/app/Census/CensusOfFrance1906.php +++ b/app/Census/CensusOfFrance1906.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1911.php b/app/Census/CensusOfFrance1911.php index 66be2f2252..a896248824 100644 --- a/app/Census/CensusOfFrance1911.php +++ b/app/Census/CensusOfFrance1911.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1921.php b/app/Census/CensusOfFrance1921.php index e161945707..5c10bc2a4d 100644 --- a/app/Census/CensusOfFrance1921.php +++ b/app/Census/CensusOfFrance1921.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1926.php b/app/Census/CensusOfFrance1926.php index 4507fab74a..a46138ca40 100644 --- a/app/Census/CensusOfFrance1926.php +++ b/app/Census/CensusOfFrance1926.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1931.php b/app/Census/CensusOfFrance1931.php index 88f8b5d810..e9fd473bf6 100644 --- a/app/Census/CensusOfFrance1931.php +++ b/app/Census/CensusOfFrance1931.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1936.php b/app/Census/CensusOfFrance1936.php index 240dce19f6..4790f4ccf2 100644 --- a/app/Census/CensusOfFrance1936.php +++ b/app/Census/CensusOfFrance1936.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfFrance1946.php b/app/Census/CensusOfFrance1946.php index 768475913e..960b2704a9 100644 --- a/app/Census/CensusOfFrance1946.php +++ b/app/Census/CensusOfFrance1946.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfScotland.php b/app/Census/CensusOfScotland.php index 713a0c57c0..d8648bb49b 100644 --- a/app/Census/CensusOfScotland.php +++ b/app/Census/CensusOfScotland.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfScotland1841.php b/app/Census/CensusOfScotland1841.php index cded92d798..1420680687 100644 --- a/app/Census/CensusOfScotland1841.php +++ b/app/Census/CensusOfScotland1841.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfScotland1851.php b/app/Census/CensusOfScotland1851.php index de7fba2a61..8196ed3306 100644 --- a/app/Census/CensusOfScotland1851.php +++ b/app/Census/CensusOfScotland1851.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfScotland1861.php b/app/Census/CensusOfScotland1861.php index 787f475644..8e48a9d51a 100644 --- a/app/Census/CensusOfScotland1861.php +++ b/app/Census/CensusOfScotland1861.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfScotland1871.php b/app/Census/CensusOfScotland1871.php index ae131a79ad..c3c981e3c8 100644 --- a/app/Census/CensusOfScotland1871.php +++ b/app/Census/CensusOfScotland1871.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfScotland1881.php b/app/Census/CensusOfScotland1881.php index 993da863d9..fff7f69283 100644 --- a/app/Census/CensusOfScotland1881.php +++ b/app/Census/CensusOfScotland1881.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfScotland1891.php b/app/Census/CensusOfScotland1891.php index c9a5b5f715..db42cd46ad 100644 --- a/app/Census/CensusOfScotland1891.php +++ b/app/Census/CensusOfScotland1891.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfScotland1901.php b/app/Census/CensusOfScotland1901.php index 411443654d..eec8c32f2b 100644 --- a/app/Census/CensusOfScotland1901.php +++ b/app/Census/CensusOfScotland1901.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfScotland1911.php b/app/Census/CensusOfScotland1911.php index b9acb48468..03690c0fb5 100644 --- a/app/Census/CensusOfScotland1911.php +++ b/app/Census/CensusOfScotland1911.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates.php b/app/Census/CensusOfUnitedStates.php index d5e9ddcc60..7f5aed0246 100644 --- a/app/Census/CensusOfUnitedStates.php +++ b/app/Census/CensusOfUnitedStates.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates1790.php b/app/Census/CensusOfUnitedStates1790.php index 9f6def429a..ae42bac535 100644 --- a/app/Census/CensusOfUnitedStates1790.php +++ b/app/Census/CensusOfUnitedStates1790.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates1800.php b/app/Census/CensusOfUnitedStates1800.php index 4140bef166..6467e9e53d 100644 --- a/app/Census/CensusOfUnitedStates1800.php +++ b/app/Census/CensusOfUnitedStates1800.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates1810.php b/app/Census/CensusOfUnitedStates1810.php index 96aa2ec93a..c052e380c6 100644 --- a/app/Census/CensusOfUnitedStates1810.php +++ b/app/Census/CensusOfUnitedStates1810.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates1820.php b/app/Census/CensusOfUnitedStates1820.php index 2922178233..f90546951e 100644 --- a/app/Census/CensusOfUnitedStates1820.php +++ b/app/Census/CensusOfUnitedStates1820.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates1830.php b/app/Census/CensusOfUnitedStates1830.php index df530957da..b611911718 100644 --- a/app/Census/CensusOfUnitedStates1830.php +++ b/app/Census/CensusOfUnitedStates1830.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates1840.php b/app/Census/CensusOfUnitedStates1840.php index cd8df13a00..454e786a5b 100644 --- a/app/Census/CensusOfUnitedStates1840.php +++ b/app/Census/CensusOfUnitedStates1840.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates1850.php b/app/Census/CensusOfUnitedStates1850.php index cf9f83ecdf..0e447f6246 100644 --- a/app/Census/CensusOfUnitedStates1850.php +++ b/app/Census/CensusOfUnitedStates1850.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates1860.php b/app/Census/CensusOfUnitedStates1860.php index 5982c6e61f..3cf4fdabe4 100644 --- a/app/Census/CensusOfUnitedStates1860.php +++ b/app/Census/CensusOfUnitedStates1860.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates1870.php b/app/Census/CensusOfUnitedStates1870.php index 03166b90a2..6b80478413 100644 --- a/app/Census/CensusOfUnitedStates1870.php +++ b/app/Census/CensusOfUnitedStates1870.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates1880.php b/app/Census/CensusOfUnitedStates1880.php index 7e21c07205..dd9bdf9c52 100644 --- a/app/Census/CensusOfUnitedStates1880.php +++ b/app/Census/CensusOfUnitedStates1880.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates1890.php b/app/Census/CensusOfUnitedStates1890.php index e40ce724d0..d8d6c5bfa0 100644 --- a/app/Census/CensusOfUnitedStates1890.php +++ b/app/Census/CensusOfUnitedStates1890.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates1900.php b/app/Census/CensusOfUnitedStates1900.php index 8c9581c123..f83e409ced 100644 --- a/app/Census/CensusOfUnitedStates1900.php +++ b/app/Census/CensusOfUnitedStates1900.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates1910.php b/app/Census/CensusOfUnitedStates1910.php index 2abdb277e0..0185f2fa32 100644 --- a/app/Census/CensusOfUnitedStates1910.php +++ b/app/Census/CensusOfUnitedStates1910.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates1920.php b/app/Census/CensusOfUnitedStates1920.php index 060c4f6696..6c2bd91a3b 100644 --- a/app/Census/CensusOfUnitedStates1920.php +++ b/app/Census/CensusOfUnitedStates1920.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates1930.php b/app/Census/CensusOfUnitedStates1930.php index cfdfc1d7dc..13fd8639db 100644 --- a/app/Census/CensusOfUnitedStates1930.php +++ b/app/Census/CensusOfUnitedStates1930.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfUnitedStates1940.php b/app/Census/CensusOfUnitedStates1940.php index e3ba586a7e..73c3aea313 100644 --- a/app/Census/CensusOfUnitedStates1940.php +++ b/app/Census/CensusOfUnitedStates1940.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfWales.php b/app/Census/CensusOfWales.php index eb96b279dd..e81208d4c2 100644 --- a/app/Census/CensusOfWales.php +++ b/app/Census/CensusOfWales.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfWales1841.php b/app/Census/CensusOfWales1841.php index 322b76d412..2b9432c1c4 100644 --- a/app/Census/CensusOfWales1841.php +++ b/app/Census/CensusOfWales1841.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfWales1851.php b/app/Census/CensusOfWales1851.php index a49f95a8d8..c6552d7534 100644 --- a/app/Census/CensusOfWales1851.php +++ b/app/Census/CensusOfWales1851.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfWales1861.php b/app/Census/CensusOfWales1861.php index ff31ba8e5d..3328de301a 100644 --- a/app/Census/CensusOfWales1861.php +++ b/app/Census/CensusOfWales1861.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfWales1871.php b/app/Census/CensusOfWales1871.php index 81d6a22094..f6437d70e3 100644 --- a/app/Census/CensusOfWales1871.php +++ b/app/Census/CensusOfWales1871.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfWales1881.php b/app/Census/CensusOfWales1881.php index d4c983b224..34a13c3ac0 100644 --- a/app/Census/CensusOfWales1881.php +++ b/app/Census/CensusOfWales1881.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfWales1891.php b/app/Census/CensusOfWales1891.php index e3c58074f1..f4ad7c40df 100644 --- a/app/Census/CensusOfWales1891.php +++ b/app/Census/CensusOfWales1891.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfWales1901.php b/app/Census/CensusOfWales1901.php index 76f34d6287..76accd05a5 100644 --- a/app/Census/CensusOfWales1901.php +++ b/app/Census/CensusOfWales1901.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusOfWales1911.php b/app/Census/CensusOfWales1911.php index d0d4863907..058b622a38 100644 --- a/app/Census/CensusOfWales1911.php +++ b/app/Census/CensusOfWales1911.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/CensusPlaceInterface.php b/app/Census/CensusPlaceInterface.php index b4e6bcf93d..31ca03afe4 100644 --- a/app/Census/CensusPlaceInterface.php +++ b/app/Census/CensusPlaceInterface.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/RegisterOfEngland1939.php b/app/Census/RegisterOfEngland1939.php index cf5a35ecb3..6a0940435b 100644 --- a/app/Census/RegisterOfEngland1939.php +++ b/app/Census/RegisterOfEngland1939.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/Census/RegisterOfWales1939.php b/app/Census/RegisterOfWales1939.php index 5f8bf6a275..490ab7d9dd 100644 --- a/app/Census/RegisterOfWales1939.php +++ b/app/Census/RegisterOfWales1939.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees\Census; diff --git a/app/ColorGenerator.php b/app/ColorGenerator.php index 91048762f5..0f465deaf7 100644 --- a/app/ColorGenerator.php +++ b/app/ColorGenerator.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; /** diff --git a/app/CommonMark/CensusTableExtension.php b/app/CommonMark/CensusTableExtension.php index 4404bb9d77..a00bfb83fa 100644 --- a/app/CommonMark/CensusTableExtension.php +++ b/app/CommonMark/CensusTableExtension.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\CommonMark; use League\CommonMark\Block\Parser\BlockParserInterface; diff --git a/app/CommonMark/CensusTableParser.php b/app/CommonMark/CensusTableParser.php index 4e08ce58df..5d5cacf1c5 100644 --- a/app/CommonMark/CensusTableParser.php +++ b/app/CommonMark/CensusTableParser.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\CommonMark; use League\CommonMark\Block\Element\Paragraph; diff --git a/app/CommonMark/XrefExtension.php b/app/CommonMark/XrefExtension.php index 4803279d75..bb381cfc91 100644 --- a/app/CommonMark/XrefExtension.php +++ b/app/CommonMark/XrefExtension.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\CommonMark; use Fisharebest\Webtrees\Tree; diff --git a/app/CommonMark/XrefParser.php b/app/CommonMark/XrefParser.php index 56449b4ef7..2b4b1ff842 100644 --- a/app/CommonMark/XrefParser.php +++ b/app/CommonMark/XrefParser.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\CommonMark; use Fisharebest\Webtrees\GedcomRecord; diff --git a/app/Config.php b/app/Config.php index 6ed24bd8dc..48ba06070e 100644 --- a/app/Config.php +++ b/app/Config.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; /** diff --git a/app/Database.php b/app/Database.php index f9804f1d17..9972770263 100644 --- a/app/Database.php +++ b/app/Database.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Exception; diff --git a/app/Datatables.php b/app/Datatables.php index a05121ee95..8b7fc510d7 100644 --- a/app/Datatables.php +++ b/app/Datatables.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Fisharebest\Webtrees\Functions\FunctionsEdit; diff --git a/app/Date.php b/app/Date.php index cf765cecd9..1bb216fc0b 100644 --- a/app/Date.php +++ b/app/Date.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use DomainException; diff --git a/app/Date/CalendarDate.php b/app/Date/CalendarDate.php index 8a06a82477..8ca198c967 100644 --- a/app/Date/CalendarDate.php +++ b/app/Date/CalendarDate.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Date; use Fisharebest\ExtCalendar\CalendarInterface; diff --git a/app/Date/FrenchDate.php b/app/Date/FrenchDate.php index 723edf50b0..4590d2b536 100644 --- a/app/Date/FrenchDate.php +++ b/app/Date/FrenchDate.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Date; use Fisharebest\ExtCalendar\FrenchCalendar; diff --git a/app/Date/GregorianDate.php b/app/Date/GregorianDate.php index 3d34942a08..ca405608b4 100644 --- a/app/Date/GregorianDate.php +++ b/app/Date/GregorianDate.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Date; use Fisharebest\ExtCalendar\GregorianCalendar; diff --git a/app/Date/HijriDate.php b/app/Date/HijriDate.php index 92bb106e89..0942db4a48 100644 --- a/app/Date/HijriDate.php +++ b/app/Date/HijriDate.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Date; use Fisharebest\ExtCalendar\ArabicCalendar; diff --git a/app/Date/JalaliDate.php b/app/Date/JalaliDate.php index e59b394243..d482e59cc9 100644 --- a/app/Date/JalaliDate.php +++ b/app/Date/JalaliDate.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Date; use Fisharebest\ExtCalendar\PersianCalendar; diff --git a/app/Date/JewishDate.php b/app/Date/JewishDate.php index 46ab47bfea..73f530426f 100644 --- a/app/Date/JewishDate.php +++ b/app/Date/JewishDate.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Date; use Fisharebest\ExtCalendar\JewishCalendar; diff --git a/app/Date/JulianDate.php b/app/Date/JulianDate.php index 2de79f40c9..91d1eeb752 100644 --- a/app/Date/JulianDate.php +++ b/app/Date/JulianDate.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Date; use Fisharebest\ExtCalendar\JulianCalendar; diff --git a/app/Date/RomanDate.php b/app/Date/RomanDate.php index d3f4ab3e25..6be538a7b6 100644 --- a/app/Date/RomanDate.php +++ b/app/Date/RomanDate.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Date; /** diff --git a/app/DebugBar.php b/app/DebugBar.php index 84f1df3f5d..d05ce60b5d 100644 --- a/app/DebugBar.php +++ b/app/DebugBar.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Closure; diff --git a/app/DebugBar/ViewCollector.php b/app/DebugBar/ViewCollector.php index b466bdcad4..d487833dac 100644 --- a/app/DebugBar/ViewCollector.php +++ b/app/DebugBar/ViewCollector.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\DebugBar; use DebugBar\DataCollector\DataCollector; diff --git a/app/Fact.php b/app/Fact.php index 6bf1b41530..eb3258c096 100644 --- a/app/Fact.php +++ b/app/Fact.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Fisharebest\Webtrees\Functions\FunctionsPrint; diff --git a/app/Family.php b/app/Family.php index f5aaa23372..3b782cb073 100644 --- a/app/Family.php +++ b/app/Family.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; /** diff --git a/app/File.php b/app/File.php index ad437faefa..8e441a7545 100644 --- a/app/File.php +++ b/app/File.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Throwable; diff --git a/app/Filter.php b/app/Filter.php index fe3a6e44ab..df036b9e23 100644 --- a/app/Filter.php +++ b/app/Filter.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Fisharebest\Webtrees\CommonMark\CensusTableExtension; diff --git a/app/FlashMessages.php b/app/FlashMessages.php index 469b29116d..2397acb64f 100644 --- a/app/FlashMessages.php +++ b/app/FlashMessages.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use stdClass; diff --git a/app/FontAwesome.php b/app/FontAwesome.php index 67e6b33293..fa81181b44 100644 --- a/app/FontAwesome.php +++ b/app/FontAwesome.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; diff --git a/app/Functions/Functions.php b/app/Functions/Functions.php index 3c115c74ba..21f5865aad 100644 --- a/app/Functions/Functions.php +++ b/app/Functions/Functions.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Functions; use Fisharebest\Webtrees\Auth; diff --git a/app/Functions/FunctionsCharts.php b/app/Functions/FunctionsCharts.php index b0e9082a02..cde4f4ba59 100644 --- a/app/Functions/FunctionsCharts.php +++ b/app/Functions/FunctionsCharts.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Functions; use Fisharebest\Webtrees\Auth; diff --git a/app/Functions/FunctionsDate.php b/app/Functions/FunctionsDate.php index 1fe361b3e7..6a8831401b 100644 --- a/app/Functions/FunctionsDate.php +++ b/app/Functions/FunctionsDate.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Functions; use Fisharebest\Webtrees\Date; diff --git a/app/Functions/FunctionsDb.php b/app/Functions/FunctionsDb.php index d19ecc0691..bfde0371c0 100644 --- a/app/Functions/FunctionsDb.php +++ b/app/Functions/FunctionsDb.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Functions; use Fisharebest\Webtrees\Database; diff --git a/app/Functions/FunctionsEdit.php b/app/Functions/FunctionsEdit.php index 46ef81d114..34e4fb0930 100644 --- a/app/Functions/FunctionsEdit.php +++ b/app/Functions/FunctionsEdit.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Functions; use Fisharebest\Webtrees\Auth; diff --git a/app/Functions/FunctionsExport.php b/app/Functions/FunctionsExport.php index 4af3631131..75d3a87749 100644 --- a/app/Functions/FunctionsExport.php +++ b/app/Functions/FunctionsExport.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Functions; use Fisharebest\Webtrees\Auth; diff --git a/app/Functions/FunctionsImport.php b/app/Functions/FunctionsImport.php index 2702c86cad..acd5e7df51 100644 --- a/app/Functions/FunctionsImport.php +++ b/app/Functions/FunctionsImport.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Functions; use Fisharebest\Webtrees\Database; diff --git a/app/Functions/FunctionsPrint.php b/app/Functions/FunctionsPrint.php index e91c36639b..d4e0a2f753 100644 --- a/app/Functions/FunctionsPrint.php +++ b/app/Functions/FunctionsPrint.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Functions; use Fisharebest\Webtrees\Config; diff --git a/app/Functions/FunctionsPrintFacts.php b/app/Functions/FunctionsPrintFacts.php index a66572b10e..fad2b09797 100644 --- a/app/Functions/FunctionsPrintFacts.php +++ b/app/Functions/FunctionsPrintFacts.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Functions; use Fisharebest\Webtrees\Auth; diff --git a/app/Functions/FunctionsPrintLists.php b/app/Functions/FunctionsPrintLists.php index 575ac18ea0..2af96ea0d2 100644 --- a/app/Functions/FunctionsPrintLists.php +++ b/app/Functions/FunctionsPrintLists.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Functions; use Fisharebest\Webtrees\I18N; diff --git a/app/Functions/FunctionsRtl.php b/app/Functions/FunctionsRtl.php index 4f767370d3..b2d6864562 100644 --- a/app/Functions/FunctionsRtl.php +++ b/app/Functions/FunctionsRtl.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Functions; use Fisharebest\Webtrees\I18N; diff --git a/app/Gedcom.php b/app/Gedcom.php index f5f3eaa58a..42227e64ff 100644 --- a/app/Gedcom.php +++ b/app/Gedcom.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; /** diff --git a/app/GedcomCode/GedcomCodeAdop.php b/app/GedcomCode/GedcomCodeAdop.php index 2dd38a28ff..c5d90f228a 100644 --- a/app/GedcomCode/GedcomCodeAdop.php +++ b/app/GedcomCode/GedcomCodeAdop.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\GedcomCode; use Fisharebest\Webtrees\GedcomRecord; diff --git a/app/GedcomCode/GedcomCodeName.php b/app/GedcomCode/GedcomCodeName.php index acfe5fb8e7..08f332cbe4 100644 --- a/app/GedcomCode/GedcomCodeName.php +++ b/app/GedcomCode/GedcomCodeName.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\GedcomCode; use Fisharebest\Webtrees\GedcomRecord; diff --git a/app/GedcomCode/GedcomCodePedi.php b/app/GedcomCode/GedcomCodePedi.php index cb01c599f9..b386184d17 100644 --- a/app/GedcomCode/GedcomCodePedi.php +++ b/app/GedcomCode/GedcomCodePedi.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\GedcomCode; use Fisharebest\Webtrees\GedcomRecord; diff --git a/app/GedcomCode/GedcomCodeQuay.php b/app/GedcomCode/GedcomCodeQuay.php index 4eb0762e02..ad3b2583e6 100644 --- a/app/GedcomCode/GedcomCodeQuay.php +++ b/app/GedcomCode/GedcomCodeQuay.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\GedcomCode; use Fisharebest\Webtrees\I18N; diff --git a/app/GedcomCode/GedcomCodeRela.php b/app/GedcomCode/GedcomCodeRela.php index e1806b30ba..a24b321ebf 100644 --- a/app/GedcomCode/GedcomCodeRela.php +++ b/app/GedcomCode/GedcomCodeRela.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\GedcomCode; use Fisharebest\Webtrees\GedcomRecord; diff --git a/app/GedcomCode/GedcomCodeStat.php b/app/GedcomCode/GedcomCodeStat.php index f1aec4ed32..ea257b5ff8 100644 --- a/app/GedcomCode/GedcomCodeStat.php +++ b/app/GedcomCode/GedcomCodeStat.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\GedcomCode; use Fisharebest\Webtrees\I18N; diff --git a/app/GedcomCode/GedcomCodeTemp.php b/app/GedcomCode/GedcomCodeTemp.php index 5783647542..6bc19226f6 100644 --- a/app/GedcomCode/GedcomCodeTemp.php +++ b/app/GedcomCode/GedcomCodeTemp.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\GedcomCode; use Fisharebest\Webtrees\I18N; diff --git a/app/GedcomRecord.php b/app/GedcomRecord.php index 36e3a1975e..3f111136b5 100644 --- a/app/GedcomRecord.php +++ b/app/GedcomRecord.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Exception; diff --git a/app/GedcomTag.php b/app/GedcomTag.php index 79967d6d89..087db7f1d8 100644 --- a/app/GedcomTag.php +++ b/app/GedcomTag.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Ramsey\Uuid\Uuid; diff --git a/app/Html.php b/app/Html.php index c22cead80a..2d02fd4040 100644 --- a/app/Html.php +++ b/app/Html.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; /** diff --git a/app/I18N.php b/app/I18N.php index 5e12481f29..742428da8c 100644 --- a/app/I18N.php +++ b/app/I18N.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Collator; diff --git a/app/Individual.php b/app/Individual.php index ab35b415ca..291a113886 100644 --- a/app/Individual.php +++ b/app/Individual.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Fisharebest\ExtCalendar\GregorianCalendar; diff --git a/app/Log.php b/app/Log.php index 3e039ef786..eb5bd91a18 100644 --- a/app/Log.php +++ b/app/Log.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Symfony\Component\HttpFoundation\Request; diff --git a/app/Mail.php b/app/Mail.php index 4a36e86c02..60b51c7d02 100644 --- a/app/Mail.php +++ b/app/Mail.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Exception; diff --git a/app/Media.php b/app/Media.php index 34a259799d..3ce7d79b54 100644 --- a/app/Media.php +++ b/app/Media.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Fisharebest\Webtrees\Functions\FunctionsPrintFacts; diff --git a/app/MediaFile.php b/app/MediaFile.php index a2b466bdaa..fce70ee89f 100644 --- a/app/MediaFile.php +++ b/app/MediaFile.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use League\Glide\Urls\UrlBuilderFactory; diff --git a/app/Menu.php b/app/Menu.php index 084f7a0b1d..b788b78241 100644 --- a/app/Menu.php +++ b/app/Menu.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; /** diff --git a/app/Module.php b/app/Module.php index a3946d6a1b..60b7d90e40 100644 --- a/app/Module.php +++ b/app/Module.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Fisharebest\Webtrees\Module\AbstractModule; diff --git a/app/Module/AbstractModule.php b/app/Module/AbstractModule.php index 517a9e21d3..988d87b8ef 100644 --- a/app/Module/AbstractModule.php +++ b/app/Module/AbstractModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/AhnentafelReportModule.php b/app/Module/AhnentafelReportModule.php index cec0b62169..605968cb11 100644 --- a/app/Module/AhnentafelReportModule.php +++ b/app/Module/AhnentafelReportModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/AlbumModule.php b/app/Module/AlbumModule.php index 480d213f8e..9db6501b54 100644 --- a/app/Module/AlbumModule.php +++ b/app/Module/AlbumModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\I18N; diff --git a/app/Module/AncestorsChartModule.php b/app/Module/AncestorsChartModule.php index e15cccca54..f39ae268c3 100644 --- a/app/Module/AncestorsChartModule.php +++ b/app/Module/AncestorsChartModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/BatchUpdate/BatchUpdateBasePlugin.php b/app/Module/BatchUpdate/BatchUpdateBasePlugin.php index 1e433ba37a..40f2c12596 100644 --- a/app/Module/BatchUpdate/BatchUpdateBasePlugin.php +++ b/app/Module/BatchUpdate/BatchUpdateBasePlugin.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module\BatchUpdate; use Fisharebest\Algorithm\MyersDiff; diff --git a/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPlugin.php b/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPlugin.php index c71e60a1a0..72e890c735 100644 --- a/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPlugin.php +++ b/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPlugin.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module\BatchUpdate; use Fisharebest\Webtrees\GedcomRecord; diff --git a/app/Module/BatchUpdate/BatchUpdateMarriedNamesPlugin.php b/app/Module/BatchUpdate/BatchUpdateMarriedNamesPlugin.php index 99221dcecd..ffd3ab2b61 100644 --- a/app/Module/BatchUpdate/BatchUpdateMarriedNamesPlugin.php +++ b/app/Module/BatchUpdate/BatchUpdateMarriedNamesPlugin.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module\BatchUpdate; use Fisharebest\Webtrees\Family; diff --git a/app/Module/BatchUpdate/BatchUpdateMissingDeathPlugin.php b/app/Module/BatchUpdate/BatchUpdateMissingDeathPlugin.php index 44806ef710..7946702f24 100644 --- a/app/Module/BatchUpdate/BatchUpdateMissingDeathPlugin.php +++ b/app/Module/BatchUpdate/BatchUpdateMissingDeathPlugin.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module\BatchUpdate; use Fisharebest\Webtrees\GedcomRecord; diff --git a/app/Module/BatchUpdate/BatchUpdateNameFormatPlugin.php b/app/Module/BatchUpdate/BatchUpdateNameFormatPlugin.php index 61a82b68d9..f854ca8b81 100644 --- a/app/Module/BatchUpdate/BatchUpdateNameFormatPlugin.php +++ b/app/Module/BatchUpdate/BatchUpdateNameFormatPlugin.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module\BatchUpdate; use Fisharebest\Webtrees\GedcomRecord; diff --git a/app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php b/app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php index 24cd265527..30df0f8cfd 100644 --- a/app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php +++ b/app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module\BatchUpdate; use Fisharebest\Webtrees\Bootstrap4; diff --git a/app/Module/BatchUpdateModule.php b/app/Module/BatchUpdateModule.php index 5a8336a8c3..beda7d4dda 100644 --- a/app/Module/BatchUpdateModule.php +++ b/app/Module/BatchUpdateModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/BirthDeathMarriageReportModule.php b/app/Module/BirthDeathMarriageReportModule.php index 158343c337..931c88da59 100644 --- a/app/Module/BirthDeathMarriageReportModule.php +++ b/app/Module/BirthDeathMarriageReportModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/BirthReportModule.php b/app/Module/BirthReportModule.php index 592d2933ec..8ce79ab6c7 100644 --- a/app/Module/BirthReportModule.php +++ b/app/Module/BirthReportModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/CemeteryReportModule.php b/app/Module/CemeteryReportModule.php index e4a271173e..769c5d602e 100644 --- a/app/Module/CemeteryReportModule.php +++ b/app/Module/CemeteryReportModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/CensusAssistantModule.php b/app/Module/CensusAssistantModule.php index c9e555e626..df57542fd4 100644 --- a/app/Module/CensusAssistantModule.php +++ b/app/Module/CensusAssistantModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; diff --git a/app/Module/ChangeReportModule.php b/app/Module/ChangeReportModule.php index 967c35f0e8..3257b29e38 100644 --- a/app/Module/ChangeReportModule.php +++ b/app/Module/ChangeReportModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/ChartsBlockModule.php b/app/Module/ChartsBlockModule.php index b5eeccfd25..9cf5bf02c2 100644 --- a/app/Module/ChartsBlockModule.php +++ b/app/Module/ChartsBlockModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/CkeditorModule.php b/app/Module/CkeditorModule.php index 2ced6ce467..6373e88520 100644 --- a/app/Module/CkeditorModule.php +++ b/app/Module/CkeditorModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\I18N; diff --git a/app/Module/ClippingsCartModule.php b/app/Module/ClippingsCartModule.php index 4b4443e7f6..037021fa46 100644 --- a/app/Module/ClippingsCartModule.php +++ b/app/Module/ClippingsCartModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/CompactTreeChartModule.php b/app/Module/CompactTreeChartModule.php index 0b5186eaec..b77de61c01 100644 --- a/app/Module/CompactTreeChartModule.php +++ b/app/Module/CompactTreeChartModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/DeathReportModule.php b/app/Module/DeathReportModule.php index 1351435ded..941431103a 100644 --- a/app/Module/DeathReportModule.php +++ b/app/Module/DeathReportModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/DescendancyChartModule.php b/app/Module/DescendancyChartModule.php index 46a31ecee9..597768dbe9 100644 --- a/app/Module/DescendancyChartModule.php +++ b/app/Module/DescendancyChartModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/DescendancyModule.php b/app/Module/DescendancyModule.php index 848087e6e0..460ffc08ca 100644 --- a/app/Module/DescendancyModule.php +++ b/app/Module/DescendancyModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Database; diff --git a/app/Module/DescendancyReportModule.php b/app/Module/DescendancyReportModule.php index 24e7b7563d..73fae46e51 100644 --- a/app/Module/DescendancyReportModule.php +++ b/app/Module/DescendancyReportModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/ExtraInformationModule.php b/app/Module/ExtraInformationModule.php index 63c50537d0..c25a477ec6 100644 --- a/app/Module/ExtraInformationModule.php +++ b/app/Module/ExtraInformationModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Fact; diff --git a/app/Module/FactSourcesReportModule.php b/app/Module/FactSourcesReportModule.php index 51055861c4..4556e4bb3c 100644 --- a/app/Module/FactSourcesReportModule.php +++ b/app/Module/FactSourcesReportModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/FamilyBookChartModule.php b/app/Module/FamilyBookChartModule.php index 426b311d50..3f1a8d5ec8 100644 --- a/app/Module/FamilyBookChartModule.php +++ b/app/Module/FamilyBookChartModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/FamilyGroupReportModule.php b/app/Module/FamilyGroupReportModule.php index 68da411359..1c1922450f 100644 --- a/app/Module/FamilyGroupReportModule.php +++ b/app/Module/FamilyGroupReportModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/FamilyNavigatorModule.php b/app/Module/FamilyNavigatorModule.php index d2c051d609..d6791dc176 100644 --- a/app/Module/FamilyNavigatorModule.php +++ b/app/Module/FamilyNavigatorModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\I18N; diff --git a/app/Module/FamilyTreeFavoritesModule.php b/app/Module/FamilyTreeFavoritesModule.php index 55650c477d..1d47ff7ab8 100644 --- a/app/Module/FamilyTreeFavoritesModule.php +++ b/app/Module/FamilyTreeFavoritesModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/FamilyTreeNews/Schema/Migration0.php b/app/Module/FamilyTreeNews/Schema/Migration0.php index 28fc32a2d6..5b7dd9185f 100644 --- a/app/Module/FamilyTreeNews/Schema/Migration0.php +++ b/app/Module/FamilyTreeNews/Schema/Migration0.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module\FamilyTreeNews\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Module/FamilyTreeNews/Schema/Migration1.php b/app/Module/FamilyTreeNews/Schema/Migration1.php index 7688d25a5d..75e9a416e8 100644 --- a/app/Module/FamilyTreeNews/Schema/Migration1.php +++ b/app/Module/FamilyTreeNews/Schema/Migration1.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module\FamilyTreeNews\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Module/FamilyTreeNews/Schema/Migration2.php b/app/Module/FamilyTreeNews/Schema/Migration2.php index ac9c4098d1..0456cf0a18 100644 --- a/app/Module/FamilyTreeNews/Schema/Migration2.php +++ b/app/Module/FamilyTreeNews/Schema/Migration2.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module\FamilyTreeNews\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Module/FamilyTreeNewsModule.php b/app/Module/FamilyTreeNewsModule.php index 63b6bf22b4..aca92c2529 100644 --- a/app/Module/FamilyTreeNewsModule.php +++ b/app/Module/FamilyTreeNewsModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/FamilyTreeStatisticsModule.php b/app/Module/FamilyTreeStatisticsModule.php index bd5c2f66f1..4d70dc07a2 100644 --- a/app/Module/FamilyTreeStatisticsModule.php +++ b/app/Module/FamilyTreeStatisticsModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/FanChartModule.php b/app/Module/FanChartModule.php index b41ee43534..2d16ea5860 100644 --- a/app/Module/FanChartModule.php +++ b/app/Module/FanChartModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/FrequentlyAskedQuestionsModule.php b/app/Module/FrequentlyAskedQuestionsModule.php index 08afd77159..7bbac5bbbd 100644 --- a/app/Module/FrequentlyAskedQuestionsModule.php +++ b/app/Module/FrequentlyAskedQuestionsModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Database; diff --git a/app/Module/HourglassChartModule.php b/app/Module/HourglassChartModule.php index e69b79aa38..9cedd0d5e9 100644 --- a/app/Module/HourglassChartModule.php +++ b/app/Module/HourglassChartModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/HtmlBlockModule.php b/app/Module/HtmlBlockModule.php index ec3e313d0a..0e7f520e55 100644 --- a/app/Module/HtmlBlockModule.php +++ b/app/Module/HtmlBlockModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/IndividualFactsTabModule.php b/app/Module/IndividualFactsTabModule.php index 3a82cb4c5b..01ce713e8f 100644 --- a/app/Module/IndividualFactsTabModule.php +++ b/app/Module/IndividualFactsTabModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Date; diff --git a/app/Module/IndividualFamiliesReportModule.php b/app/Module/IndividualFamiliesReportModule.php index 9921828e25..86eb149101 100644 --- a/app/Module/IndividualFamiliesReportModule.php +++ b/app/Module/IndividualFamiliesReportModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/IndividualReportModule.php b/app/Module/IndividualReportModule.php index ecd91c2005..bc6cd61f59 100644 --- a/app/Module/IndividualReportModule.php +++ b/app/Module/IndividualReportModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/InteractiveTree/TreeView.php b/app/Module/InteractiveTree/TreeView.php index 33b68d3770..ae1a0632cb 100644 --- a/app/Module/InteractiveTree/TreeView.php +++ b/app/Module/InteractiveTree/TreeView.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module\InteractiveTree; use Fisharebest\Webtrees\Family; diff --git a/app/Module/InteractiveTreeModule.php b/app/Module/InteractiveTreeModule.php index 174afcced7..9f85feaa22 100644 --- a/app/Module/InteractiveTreeModule.php +++ b/app/Module/InteractiveTreeModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Exceptions\IndividualAccessDeniedException; diff --git a/app/Module/LifespansChartModule.php b/app/Module/LifespansChartModule.php index 7c0fe34f90..f03e384d8a 100644 --- a/app/Module/LifespansChartModule.php +++ b/app/Module/LifespansChartModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/LoggedInUsersModule.php b/app/Module/LoggedInUsersModule.php index ad023fe861..0f2e0af5ee 100644 --- a/app/Module/LoggedInUsersModule.php +++ b/app/Module/LoggedInUsersModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/LoginBlockModule.php b/app/Module/LoginBlockModule.php index 2e9ad8fc24..716538498d 100644 --- a/app/Module/LoginBlockModule.php +++ b/app/Module/LoginBlockModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/MarriageReportModule.php b/app/Module/MarriageReportModule.php index 6f5c815e9a..ddedb3985a 100644 --- a/app/Module/MarriageReportModule.php +++ b/app/Module/MarriageReportModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/MediaTabModule.php b/app/Module/MediaTabModule.php index c57ebf03a6..f9e6e0731d 100644 --- a/app/Module/MediaTabModule.php +++ b/app/Module/MediaTabModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Fact; diff --git a/app/Module/MissingFactsReportModule.php b/app/Module/MissingFactsReportModule.php index 6f01f8949c..7debcb138f 100644 --- a/app/Module/MissingFactsReportModule.php +++ b/app/Module/MissingFactsReportModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/ModuleChartInterface.php b/app/Module/ModuleChartInterface.php index 78c6d65f4d..0049eaea36 100644 --- a/app/Module/ModuleChartInterface.php +++ b/app/Module/ModuleChartInterface.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Individual; diff --git a/app/Module/ModuleConfigInterface.php b/app/Module/ModuleConfigInterface.php index 7b92dbc375..9e77f2de56 100644 --- a/app/Module/ModuleConfigInterface.php +++ b/app/Module/ModuleConfigInterface.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; /** diff --git a/app/Module/ModuleMenuInterface.php b/app/Module/ModuleMenuInterface.php index bd80c2a75a..aacca944b6 100644 --- a/app/Module/ModuleMenuInterface.php +++ b/app/Module/ModuleMenuInterface.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Menu; diff --git a/app/Module/ModuleReportInterface.php b/app/Module/ModuleReportInterface.php index 2b79e7dd09..4fc8b67c27 100644 --- a/app/Module/ModuleReportInterface.php +++ b/app/Module/ModuleReportInterface.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Menu; diff --git a/app/Module/ModuleSidebarInterface.php b/app/Module/ModuleSidebarInterface.php index b3e9791ed5..808a81a9ff 100644 --- a/app/Module/ModuleSidebarInterface.php +++ b/app/Module/ModuleSidebarInterface.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Individual; diff --git a/app/Module/ModuleTabInterface.php b/app/Module/ModuleTabInterface.php index a149fd72c9..96f8ac4fc3 100644 --- a/app/Module/ModuleTabInterface.php +++ b/app/Module/ModuleTabInterface.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Individual; diff --git a/app/Module/ModuleThemeInterface.php b/app/Module/ModuleThemeInterface.php index 6afde9c40e..8630546131 100644 --- a/app/Module/ModuleThemeInterface.php +++ b/app/Module/ModuleThemeInterface.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; /** diff --git a/app/Module/NotesTabModule.php b/app/Module/NotesTabModule.php index 04f1a32546..b53f687844 100644 --- a/app/Module/NotesTabModule.php +++ b/app/Module/NotesTabModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Fact; diff --git a/app/Module/OccupationReportModule.php b/app/Module/OccupationReportModule.php index babaeea150..8cc041f567 100644 --- a/app/Module/OccupationReportModule.php +++ b/app/Module/OccupationReportModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/OnThisDayModule.php b/app/Module/OnThisDayModule.php index 1f2b0dfe12..c2543de0d2 100644 --- a/app/Module/OnThisDayModule.php +++ b/app/Module/OnThisDayModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/PedigreeChartModule.php b/app/Module/PedigreeChartModule.php index 2e757b1a20..e5618ddc57 100644 --- a/app/Module/PedigreeChartModule.php +++ b/app/Module/PedigreeChartModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/PedigreeReportModule.php b/app/Module/PedigreeReportModule.php index 3447356f25..32bf947733 100644 --- a/app/Module/PedigreeReportModule.php +++ b/app/Module/PedigreeReportModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/RecentChangesModule.php b/app/Module/RecentChangesModule.php index 48a2f19e47..3768f4a971 100644 --- a/app/Module/RecentChangesModule.php +++ b/app/Module/RecentChangesModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/RelatedIndividualsReportModule.php b/app/Module/RelatedIndividualsReportModule.php index a09e8225ba..4f17d1a1b6 100644 --- a/app/Module/RelatedIndividualsReportModule.php +++ b/app/Module/RelatedIndividualsReportModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/RelationshipsChartModule.php b/app/Module/RelationshipsChartModule.php index c265dedfdc..375237cbd1 100644 --- a/app/Module/RelationshipsChartModule.php +++ b/app/Module/RelationshipsChartModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/RelativesTabModule.php b/app/Module/RelativesTabModule.php index 7eb317e071..480b6b876b 100644 --- a/app/Module/RelativesTabModule.php +++ b/app/Module/RelativesTabModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/ResearchTaskModule.php b/app/Module/ResearchTaskModule.php index 84f009619f..b56c6d39e7 100644 --- a/app/Module/ResearchTaskModule.php +++ b/app/Module/ResearchTaskModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/ReviewChangesModule.php b/app/Module/ReviewChangesModule.php index 4ac49845ea..def571b158 100644 --- a/app/Module/ReviewChangesModule.php +++ b/app/Module/ReviewChangesModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/SiteMapModule.php b/app/Module/SiteMapModule.php index a0c055b5a5..4bcae4c4ac 100644 --- a/app/Module/SiteMapModule.php +++ b/app/Module/SiteMapModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Database; diff --git a/app/Module/SlideShowModule.php b/app/Module/SlideShowModule.php index 435c34134f..ffcdf2e91a 100644 --- a/app/Module/SlideShowModule.php +++ b/app/Module/SlideShowModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/SourcesTabModule.php b/app/Module/SourcesTabModule.php index fd25fe15e9..4de75a2386 100644 --- a/app/Module/SourcesTabModule.php +++ b/app/Module/SourcesTabModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Fact; diff --git a/app/Module/StatisticsChartModule.php b/app/Module/StatisticsChartModule.php index bc809ec1d1..627263448e 100644 --- a/app/Module/StatisticsChartModule.php +++ b/app/Module/StatisticsChartModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/StoriesModule.php b/app/Module/StoriesModule.php index 637e26df36..3bf4b9701b 100644 --- a/app/Module/StoriesModule.php +++ b/app/Module/StoriesModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/ThemeSelectModule.php b/app/Module/ThemeSelectModule.php index 11eaf5b03a..9896f683f7 100644 --- a/app/Module/ThemeSelectModule.php +++ b/app/Module/ThemeSelectModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\I18N; diff --git a/app/Module/TimelineChartModule.php b/app/Module/TimelineChartModule.php index 1446d80c94..0798a96ee2 100644 --- a/app/Module/TimelineChartModule.php +++ b/app/Module/TimelineChartModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/TopGivenNamesModule.php b/app/Module/TopGivenNamesModule.php index 38587e8e46..bd363b9a2c 100644 --- a/app/Module/TopGivenNamesModule.php +++ b/app/Module/TopGivenNamesModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/TopPageViewsModule.php b/app/Module/TopPageViewsModule.php index d0fa3b01c7..d94126febf 100644 --- a/app/Module/TopPageViewsModule.php +++ b/app/Module/TopPageViewsModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/TopSurnamesModule.php b/app/Module/TopSurnamesModule.php index 7267100c77..d570f4a9fd 100644 --- a/app/Module/TopSurnamesModule.php +++ b/app/Module/TopSurnamesModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/UpcomingAnniversariesModule.php b/app/Module/UpcomingAnniversariesModule.php index a50bfd13c8..1b0e459c26 100644 --- a/app/Module/UpcomingAnniversariesModule.php +++ b/app/Module/UpcomingAnniversariesModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/UserFavoritesModule.php b/app/Module/UserFavoritesModule.php index ee46d3986a..331974a354 100644 --- a/app/Module/UserFavoritesModule.php +++ b/app/Module/UserFavoritesModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/UserJournalModule.php b/app/Module/UserJournalModule.php index 7be8fb5338..a4aaaed5c5 100644 --- a/app/Module/UserJournalModule.php +++ b/app/Module/UserJournalModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/UserMessagesModule.php b/app/Module/UserMessagesModule.php index 7ff00bb9c8..8bae908a86 100644 --- a/app/Module/UserMessagesModule.php +++ b/app/Module/UserMessagesModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/UserWelcomeModule.php b/app/Module/UserWelcomeModule.php index b377acfa17..36f65adc29 100644 --- a/app/Module/UserWelcomeModule.php +++ b/app/Module/UserWelcomeModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/WelcomeBlockModule.php b/app/Module/WelcomeBlockModule.php index 58734b8293..a5ff0e2193 100644 --- a/app/Module/WelcomeBlockModule.php +++ b/app/Module/WelcomeBlockModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; diff --git a/app/Module/YahrzeitModule.php b/app/Module/YahrzeitModule.php index 3f3efd84c7..8b590ac99b 100644 --- a/app/Module/YahrzeitModule.php +++ b/app/Module/YahrzeitModule.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Module; use Fisharebest\ExtCalendar\JewishCalendar; diff --git a/app/Note.php b/app/Note.php index ae0db35706..6a2d8dce37 100644 --- a/app/Note.php +++ b/app/Note.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; /** diff --git a/app/Place.php b/app/Place.php index 10e6be5bca..04a770b85d 100644 --- a/app/Place.php +++ b/app/Place.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; /** diff --git a/app/Report/ReportBase.php b/app/Report/ReportBase.php index 4288d12aff..11f4304cd2 100644 --- a/app/Report/ReportBase.php +++ b/app/Report/ReportBase.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Fisharebest\Webtrees\I18N; diff --git a/app/Report/ReportBaseCell.php b/app/Report/ReportBaseCell.php index e78e6d627b..0459501892 100644 --- a/app/Report/ReportBaseCell.php +++ b/app/Report/ReportBaseCell.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportBaseElement.php b/app/Report/ReportBaseElement.php index b3416953bd..a02188cd52 100644 --- a/app/Report/ReportBaseElement.php +++ b/app/Report/ReportBaseElement.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportBaseFootnote.php b/app/Report/ReportBaseFootnote.php index 365865d71f..ca38203f37 100644 --- a/app/Report/ReportBaseFootnote.php +++ b/app/Report/ReportBaseFootnote.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportBaseHtml.php b/app/Report/ReportBaseHtml.php index f8e982fbd3..d179a637c4 100644 --- a/app/Report/ReportBaseHtml.php +++ b/app/Report/ReportBaseHtml.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportBaseImage.php b/app/Report/ReportBaseImage.php index 52c05cea83..fcfff944e8 100644 --- a/app/Report/ReportBaseImage.php +++ b/app/Report/ReportBaseImage.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportBaseLine.php b/app/Report/ReportBaseLine.php index 0ee7adbae8..7c286a8978 100644 --- a/app/Report/ReportBaseLine.php +++ b/app/Report/ReportBaseLine.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportBasePageheader.php b/app/Report/ReportBasePageheader.php index e5294dd7d8..c242e7333c 100644 --- a/app/Report/ReportBasePageheader.php +++ b/app/Report/ReportBasePageheader.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportBaseText.php b/app/Report/ReportBaseText.php index b7b519b075..394a266087 100644 --- a/app/Report/ReportBaseText.php +++ b/app/Report/ReportBaseText.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportBaseTextbox.php b/app/Report/ReportBaseTextbox.php index 0449682680..7979163966 100644 --- a/app/Report/ReportBaseTextbox.php +++ b/app/Report/ReportBaseTextbox.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportExpressionLanguageProvider.php b/app/Report/ReportExpressionLanguageProvider.php index 5d75e4855d..adf9ea4eaf 100644 --- a/app/Report/ReportExpressionLanguageProvider.php +++ b/app/Report/ReportExpressionLanguageProvider.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Symfony\Component\ExpressionLanguage\ExpressionFunction; diff --git a/app/Report/ReportHtml.php b/app/Report/ReportHtml.php index a33469a8d2..360cd8539a 100644 --- a/app/Report/ReportHtml.php +++ b/app/Report/ReportHtml.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Fisharebest\Webtrees\Functions\FunctionsRtl; diff --git a/app/Report/ReportHtmlCell.php b/app/Report/ReportHtmlCell.php index bf59e69eba..6b5ceb4c08 100644 --- a/app/Report/ReportHtmlCell.php +++ b/app/Report/ReportHtmlCell.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportHtmlFootnote.php b/app/Report/ReportHtmlFootnote.php index a3e760cfec..f0159b25ec 100644 --- a/app/Report/ReportHtmlFootnote.php +++ b/app/Report/ReportHtmlFootnote.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportHtmlHtml.php b/app/Report/ReportHtmlHtml.php index a547635446..824cb2a06f 100644 --- a/app/Report/ReportHtmlHtml.php +++ b/app/Report/ReportHtmlHtml.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportHtmlImage.php b/app/Report/ReportHtmlImage.php index 749a9b387c..99bdcb8ef0 100644 --- a/app/Report/ReportHtmlImage.php +++ b/app/Report/ReportHtmlImage.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportHtmlLine.php b/app/Report/ReportHtmlLine.php index 14defd1d93..edc9245c4e 100644 --- a/app/Report/ReportHtmlLine.php +++ b/app/Report/ReportHtmlLine.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportHtmlPageheader.php b/app/Report/ReportHtmlPageheader.php index 540b1017bd..d01bdaa435 100644 --- a/app/Report/ReportHtmlPageheader.php +++ b/app/Report/ReportHtmlPageheader.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportHtmlText.php b/app/Report/ReportHtmlText.php index 41506e3890..f82aed00a3 100644 --- a/app/Report/ReportHtmlText.php +++ b/app/Report/ReportHtmlText.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportHtmlTextbox.php b/app/Report/ReportHtmlTextbox.php index 438671bf3a..ddf561dd01 100644 --- a/app/Report/ReportHtmlTextbox.php +++ b/app/Report/ReportHtmlTextbox.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportParserBase.php b/app/Report/ReportParserBase.php index ee9cff67af..6918d01623 100644 --- a/app/Report/ReportParserBase.php +++ b/app/Report/ReportParserBase.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Fisharebest\Webtrees\Tree; diff --git a/app/Report/ReportParserGenerate.php b/app/Report/ReportParserGenerate.php index 10f7207bfa..efd99924dc 100644 --- a/app/Report/ReportParserGenerate.php +++ b/app/Report/ReportParserGenerate.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Fisharebest\Webtrees\Auth; diff --git a/app/Report/ReportParserSetup.php b/app/Report/ReportParserSetup.php index e0785d8475..561aaad2cf 100644 --- a/app/Report/ReportParserSetup.php +++ b/app/Report/ReportParserSetup.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Fisharebest\Webtrees\Auth; diff --git a/app/Report/ReportPdf.php b/app/Report/ReportPdf.php index 3f2350298e..7f7827ea0d 100644 --- a/app/Report/ReportPdf.php +++ b/app/Report/ReportPdf.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Fisharebest\Webtrees\Auth; diff --git a/app/Report/ReportPdfCell.php b/app/Report/ReportPdfCell.php index fbec90e9e3..737327aedb 100644 --- a/app/Report/ReportPdfCell.php +++ b/app/Report/ReportPdfCell.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Fisharebest\Webtrees\Functions\FunctionsRtl; diff --git a/app/Report/ReportPdfFootnote.php b/app/Report/ReportPdfFootnote.php index a4e4e3acb7..78134dc5fc 100644 --- a/app/Report/ReportPdfFootnote.php +++ b/app/Report/ReportPdfFootnote.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportPdfHtml.php b/app/Report/ReportPdfHtml.php index 099a5cfc9c..359cee22f0 100644 --- a/app/Report/ReportPdfHtml.php +++ b/app/Report/ReportPdfHtml.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportPdfImage.php b/app/Report/ReportPdfImage.php index 7aa078f354..02ad7df741 100644 --- a/app/Report/ReportPdfImage.php +++ b/app/Report/ReportPdfImage.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportPdfLine.php b/app/Report/ReportPdfLine.php index a157a87989..4f1a96676f 100644 --- a/app/Report/ReportPdfLine.php +++ b/app/Report/ReportPdfLine.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportPdfPageheader.php b/app/Report/ReportPdfPageheader.php index c3953146e9..efb0d572bb 100644 --- a/app/Report/ReportPdfPageheader.php +++ b/app/Report/ReportPdfPageheader.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportPdfText.php b/app/Report/ReportPdfText.php index cf7a17000c..4d16a03a80 100644 --- a/app/Report/ReportPdfText.php +++ b/app/Report/ReportPdfText.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Fisharebest\Webtrees\Functions\FunctionsRtl; diff --git a/app/Report/ReportPdfTextbox.php b/app/Report/ReportPdfTextbox.php index 75e3455deb..76bda29f53 100644 --- a/app/Report/ReportPdfTextbox.php +++ b/app/Report/ReportPdfTextbox.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportTcpdf.php b/app/Report/ReportTcpdf.php index 4fb72e78a4..a1740ae1ab 100644 --- a/app/Report/ReportTcpdf.php +++ b/app/Report/ReportTcpdf.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use TCPDF; diff --git a/app/Repository.php b/app/Repository.php index 8c1ed27a05..cbf183fb0a 100644 --- a/app/Repository.php +++ b/app/Repository.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; /** diff --git a/app/Resolver.php b/app/Resolver.php index 939ecd5375..79a7015d8e 100644 --- a/app/Resolver.php +++ b/app/Resolver.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use ReflectionClass; diff --git a/app/Schema/Migration0.php b/app/Schema/Migration0.php index f19de1bd09..94762557b3 100644 --- a/app/Schema/Migration0.php +++ b/app/Schema/Migration0.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration1.php b/app/Schema/Migration1.php index 905368f26b..7cf5303b6e 100644 --- a/app/Schema/Migration1.php +++ b/app/Schema/Migration1.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration10.php b/app/Schema/Migration10.php index 756dc3d085..2ad5d1ea1f 100644 --- a/app/Schema/Migration10.php +++ b/app/Schema/Migration10.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration11.php b/app/Schema/Migration11.php index e57b6c0cf4..e3369d1b79 100644 --- a/app/Schema/Migration11.php +++ b/app/Schema/Migration11.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration12.php b/app/Schema/Migration12.php index 11220b99de..2b3baa936a 100644 --- a/app/Schema/Migration12.php +++ b/app/Schema/Migration12.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration13.php b/app/Schema/Migration13.php index 87a5984280..7df01d8582 100644 --- a/app/Schema/Migration13.php +++ b/app/Schema/Migration13.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration14.php b/app/Schema/Migration14.php index 67fc23b1b0..cfecbf41a5 100644 --- a/app/Schema/Migration14.php +++ b/app/Schema/Migration14.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration15.php b/app/Schema/Migration15.php index 102a5e75b1..1507e8ceb9 100644 --- a/app/Schema/Migration15.php +++ b/app/Schema/Migration15.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration16.php b/app/Schema/Migration16.php index 084c2f09f4..80eeb50870 100644 --- a/app/Schema/Migration16.php +++ b/app/Schema/Migration16.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration17.php b/app/Schema/Migration17.php index 5db0d058af..d49f1d3f76 100644 --- a/app/Schema/Migration17.php +++ b/app/Schema/Migration17.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; /** diff --git a/app/Schema/Migration18.php b/app/Schema/Migration18.php index 766ebd8288..a79f2f3092 100644 --- a/app/Schema/Migration18.php +++ b/app/Schema/Migration18.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration19.php b/app/Schema/Migration19.php index 7837842bf0..1f291b8b21 100644 --- a/app/Schema/Migration19.php +++ b/app/Schema/Migration19.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration2.php b/app/Schema/Migration2.php index 3f0be5c29a..c43e3f671f 100644 --- a/app/Schema/Migration2.php +++ b/app/Schema/Migration2.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration20.php b/app/Schema/Migration20.php index cf1257f225..801601286b 100644 --- a/app/Schema/Migration20.php +++ b/app/Schema/Migration20.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration21.php b/app/Schema/Migration21.php index 66ff3650b8..6fb068c166 100644 --- a/app/Schema/Migration21.php +++ b/app/Schema/Migration21.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration22.php b/app/Schema/Migration22.php index 8827c0330d..fd010c2d93 100644 --- a/app/Schema/Migration22.php +++ b/app/Schema/Migration22.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration23.php b/app/Schema/Migration23.php index 8488907359..33938f7779 100644 --- a/app/Schema/Migration23.php +++ b/app/Schema/Migration23.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration24.php b/app/Schema/Migration24.php index 05f17c7e08..ce4c1ec162 100644 --- a/app/Schema/Migration24.php +++ b/app/Schema/Migration24.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration25.php b/app/Schema/Migration25.php index 13c1a841d6..f6aecda737 100644 --- a/app/Schema/Migration25.php +++ b/app/Schema/Migration25.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration26.php b/app/Schema/Migration26.php index 00a0f00df4..bfdae94420 100644 --- a/app/Schema/Migration26.php +++ b/app/Schema/Migration26.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration27.php b/app/Schema/Migration27.php index c552e3bdbd..04cfeb3c7a 100644 --- a/app/Schema/Migration27.php +++ b/app/Schema/Migration27.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration28.php b/app/Schema/Migration28.php index 4102582b22..93eacc4d89 100644 --- a/app/Schema/Migration28.php +++ b/app/Schema/Migration28.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration29.php b/app/Schema/Migration29.php index e1e330b023..5a74a5168a 100644 --- a/app/Schema/Migration29.php +++ b/app/Schema/Migration29.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration3.php b/app/Schema/Migration3.php index aa316b7e70..703c3fcd5d 100644 --- a/app/Schema/Migration3.php +++ b/app/Schema/Migration3.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration30.php b/app/Schema/Migration30.php index 777d2e5fee..744774b690 100644 --- a/app/Schema/Migration30.php +++ b/app/Schema/Migration30.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Auth; diff --git a/app/Schema/Migration31.php b/app/Schema/Migration31.php index ad102323a1..5302d9b189 100644 --- a/app/Schema/Migration31.php +++ b/app/Schema/Migration31.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration32.php b/app/Schema/Migration32.php index 66e87b232b..8424c00c40 100644 --- a/app/Schema/Migration32.php +++ b/app/Schema/Migration32.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration33.php b/app/Schema/Migration33.php index ac48116b7d..287badd566 100644 --- a/app/Schema/Migration33.php +++ b/app/Schema/Migration33.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; /** diff --git a/app/Schema/Migration34.php b/app/Schema/Migration34.php index 9286045fa9..761dac72de 100644 --- a/app/Schema/Migration34.php +++ b/app/Schema/Migration34.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration35.php b/app/Schema/Migration35.php index fc7fe89cb2..bee9273469 100644 --- a/app/Schema/Migration35.php +++ b/app/Schema/Migration35.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration36.php b/app/Schema/Migration36.php index d7a04f15e7..24c516fd44 100644 --- a/app/Schema/Migration36.php +++ b/app/Schema/Migration36.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration37.php b/app/Schema/Migration37.php index fb889287bb..77d4cdd258 100644 --- a/app/Schema/Migration37.php +++ b/app/Schema/Migration37.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration38.php b/app/Schema/Migration38.php index 971a1919e7..10145ddb54 100644 --- a/app/Schema/Migration38.php +++ b/app/Schema/Migration38.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration39.php b/app/Schema/Migration39.php index 6b98af2bfc..90def3b765 100644 --- a/app/Schema/Migration39.php +++ b/app/Schema/Migration39.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration4.php b/app/Schema/Migration4.php index 6e6fd75cf4..46f99d86c8 100644 --- a/app/Schema/Migration4.php +++ b/app/Schema/Migration4.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration5.php b/app/Schema/Migration5.php index b0363c917c..70eba33bf6 100644 --- a/app/Schema/Migration5.php +++ b/app/Schema/Migration5.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration6.php b/app/Schema/Migration6.php index 8fb119bbab..b5e4505505 100644 --- a/app/Schema/Migration6.php +++ b/app/Schema/Migration6.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration7.php b/app/Schema/Migration7.php index c79245f13f..0cef9c9404 100644 --- a/app/Schema/Migration7.php +++ b/app/Schema/Migration7.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration8.php b/app/Schema/Migration8.php index 1d3e5cbd59..0b37880212 100644 --- a/app/Schema/Migration8.php +++ b/app/Schema/Migration8.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/Migration9.php b/app/Schema/Migration9.php index ff79f1f7e8..b5dd5de39d 100644 --- a/app/Schema/Migration9.php +++ b/app/Schema/Migration9.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; diff --git a/app/Schema/MigrationInterface.php b/app/Schema/MigrationInterface.php index ddb5d86861..6c55d70525 100644 --- a/app/Schema/MigrationInterface.php +++ b/app/Schema/MigrationInterface.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Schema; /** diff --git a/app/Select2.php b/app/Select2.php index 618012a048..89494a4d17 100644 --- a/app/Select2.php +++ b/app/Select2.php @@ -13,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); namespace Fisharebest\Webtrees; diff --git a/app/Services/CalendarService.php b/app/Services/CalendarService.php index 749a4efd6b..09b3b2b192 100644 --- a/app/Services/CalendarService.php +++ b/app/Services/CalendarService.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Services; use Fisharebest\Webtrees\Database; diff --git a/app/Services/HousekeepingService.php b/app/Services/HousekeepingService.php index 9254c92839..e79c99e153 100644 --- a/app/Services/HousekeepingService.php +++ b/app/Services/HousekeepingService.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Services; use Exception; diff --git a/app/Services/LocalizationService.php b/app/Services/LocalizationService.php index e1193130be..577cc48d2c 100644 --- a/app/Services/LocalizationService.php +++ b/app/Services/LocalizationService.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Services; use Fisharebest\ExtCalendar\ArabicCalendar; diff --git a/app/Services/TimeoutService.php b/app/Services/TimeoutService.php index 44ef5802cd..fb29365312 100644 --- a/app/Services/TimeoutService.php +++ b/app/Services/TimeoutService.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Services; /** diff --git a/app/Services/UpgradeService.php b/app/Services/UpgradeService.php index d9f5b42b6c..b7cae2461d 100644 --- a/app/Services/UpgradeService.php +++ b/app/Services/UpgradeService.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Services; use Fisharebest\Webtrees\Database; diff --git a/app/Session.php b/app/Session.php index 73cb142c6c..e091531a94 100644 --- a/app/Session.php +++ b/app/Session.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Symfony\Component\HttpFoundation\Request; diff --git a/app/Site.php b/app/Site.php index e27fc70c40..8896238248 100644 --- a/app/Site.php +++ b/app/Site.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; /** diff --git a/app/Soundex.php b/app/Soundex.php index e95a2a3260..bdfa409a6c 100644 --- a/app/Soundex.php +++ b/app/Soundex.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; /** diff --git a/app/Source.php b/app/Source.php index 424985fee1..54b27deb19 100644 --- a/app/Source.php +++ b/app/Source.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; /** diff --git a/app/Statement.php b/app/Statement.php index 3424774464..af649e536b 100644 --- a/app/Statement.php +++ b/app/Statement.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use PDO; diff --git a/app/SurnameTradition.php b/app/SurnameTradition.php index 012186d831..1122dae47e 100644 --- a/app/SurnameTradition.php +++ b/app/SurnameTradition.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Fisharebest\Webtrees\SurnameTradition\DefaultSurnameTradition; diff --git a/app/SurnameTradition/DefaultSurnameTradition.php b/app/SurnameTradition/DefaultSurnameTradition.php index f7a23aa36d..885dbeeba2 100644 --- a/app/SurnameTradition/DefaultSurnameTradition.php +++ b/app/SurnameTradition/DefaultSurnameTradition.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\SurnameTradition; /** diff --git a/app/SurnameTradition/IcelandicSurnameTradition.php b/app/SurnameTradition/IcelandicSurnameTradition.php index 901c26359d..d57bfbcaf0 100644 --- a/app/SurnameTradition/IcelandicSurnameTradition.php +++ b/app/SurnameTradition/IcelandicSurnameTradition.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\SurnameTradition; /** diff --git a/app/SurnameTradition/LithuanianSurnameTradition.php b/app/SurnameTradition/LithuanianSurnameTradition.php index 87f7ab4270..dc70756d4d 100644 --- a/app/SurnameTradition/LithuanianSurnameTradition.php +++ b/app/SurnameTradition/LithuanianSurnameTradition.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\SurnameTradition; /** diff --git a/app/SurnameTradition/MatrilinealSurnameTradition.php b/app/SurnameTradition/MatrilinealSurnameTradition.php index 51f69e5a51..9c12831293 100644 --- a/app/SurnameTradition/MatrilinealSurnameTradition.php +++ b/app/SurnameTradition/MatrilinealSurnameTradition.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\SurnameTradition; /** diff --git a/app/SurnameTradition/PaternalSurnameTradition.php b/app/SurnameTradition/PaternalSurnameTradition.php index e9ab55a23c..e9c55e08a6 100644 --- a/app/SurnameTradition/PaternalSurnameTradition.php +++ b/app/SurnameTradition/PaternalSurnameTradition.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\SurnameTradition; /** diff --git a/app/SurnameTradition/PatrilinealSurnameTradition.php b/app/SurnameTradition/PatrilinealSurnameTradition.php index 8f9e5a20cf..4269b48242 100644 --- a/app/SurnameTradition/PatrilinealSurnameTradition.php +++ b/app/SurnameTradition/PatrilinealSurnameTradition.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\SurnameTradition; /** diff --git a/app/SurnameTradition/PolishSurnameTradition.php b/app/SurnameTradition/PolishSurnameTradition.php index 86158ca24b..ee469bce1b 100644 --- a/app/SurnameTradition/PolishSurnameTradition.php +++ b/app/SurnameTradition/PolishSurnameTradition.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\SurnameTradition; /** diff --git a/app/SurnameTradition/PortugueseSurnameTradition.php b/app/SurnameTradition/PortugueseSurnameTradition.php index c6f0bf303c..683dd3192b 100644 --- a/app/SurnameTradition/PortugueseSurnameTradition.php +++ b/app/SurnameTradition/PortugueseSurnameTradition.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\SurnameTradition; /** diff --git a/app/SurnameTradition/SpanishSurnameTradition.php b/app/SurnameTradition/SpanishSurnameTradition.php index 863def71fe..c48628ce89 100644 --- a/app/SurnameTradition/SpanishSurnameTradition.php +++ b/app/SurnameTradition/SpanishSurnameTradition.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\SurnameTradition; /** diff --git a/app/SurnameTradition/SurnameTraditionInterface.php b/app/SurnameTradition/SurnameTraditionInterface.php index 1015c1c2a7..a48ee20924 100644 --- a/app/SurnameTradition/SurnameTraditionInterface.php +++ b/app/SurnameTradition/SurnameTraditionInterface.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\SurnameTradition; /** diff --git a/app/Theme.php b/app/Theme.php index 78928fe304..a20a34a438 100644 --- a/app/Theme.php +++ b/app/Theme.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Fisharebest\Webtrees\Theme\ThemeInterface; diff --git a/app/Theme/AbstractTheme.php b/app/Theme/AbstractTheme.php index d86dee4dae..6da9edac7c 100644 --- a/app/Theme/AbstractTheme.php +++ b/app/Theme/AbstractTheme.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Theme; use Fisharebest\Webtrees\Auth; diff --git a/app/Theme/CloudsTheme.php b/app/Theme/CloudsTheme.php index 3001a8b8ec..9cac2db66b 100644 --- a/app/Theme/CloudsTheme.php +++ b/app/Theme/CloudsTheme.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Theme; use Fisharebest\Webtrees\I18N; diff --git a/app/Theme/ColorsTheme.php b/app/Theme/ColorsTheme.php index 4f4521e686..bcb137b648 100644 --- a/app/Theme/ColorsTheme.php +++ b/app/Theme/ColorsTheme.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Theme; use Fisharebest\Webtrees\Auth; diff --git a/app/Theme/FabTheme.php b/app/Theme/FabTheme.php index fad0aa3b08..e524c8f1dd 100644 --- a/app/Theme/FabTheme.php +++ b/app/Theme/FabTheme.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Theme; use Fisharebest\Webtrees\I18N; diff --git a/app/Theme/MinimalTheme.php b/app/Theme/MinimalTheme.php index 2db04020ce..dbabb9c80d 100644 --- a/app/Theme/MinimalTheme.php +++ b/app/Theme/MinimalTheme.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Theme; use Fisharebest\Webtrees\I18N; diff --git a/app/Theme/ThemeInterface.php b/app/Theme/ThemeInterface.php index bae725abec..513d22dd72 100644 --- a/app/Theme/ThemeInterface.php +++ b/app/Theme/ThemeInterface.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Theme; use Fisharebest\Webtrees\Fact; diff --git a/app/Theme/WebtreesTheme.php b/app/Theme/WebtreesTheme.php index 2aac125ffb..57be5477fb 100644 --- a/app/Theme/WebtreesTheme.php +++ b/app/Theme/WebtreesTheme.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Theme; use Fisharebest\Webtrees\I18N; diff --git a/app/Theme/XeneaTheme.php b/app/Theme/XeneaTheme.php index 43ad4a2559..ef0ae3d45c 100644 --- a/app/Theme/XeneaTheme.php +++ b/app/Theme/XeneaTheme.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Theme; use Fisharebest\Webtrees\I18N; diff --git a/app/Timestamp.php b/app/Timestamp.php index 7fbd1466cf..e2567278e7 100644 --- a/app/Timestamp.php +++ b/app/Timestamp.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; /** diff --git a/app/Tree.php b/app/Tree.php index 17d5d8eccb..93771d1654 100644 --- a/app/Tree.php +++ b/app/Tree.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Exception; diff --git a/app/View.php b/app/View.php index 5c359d97e4..360b16c29c 100644 --- a/app/View.php +++ b/app/View.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees; use Exception; |
