1d7de6d4cSGreg Roach<?php 2d7de6d4cSGreg Roach 3d7de6d4cSGreg Roach/** 4d7de6d4cSGreg Roach * webtrees: online genealogy 5d7de6d4cSGreg Roach * Copyright (C) 2023 webtrees development team 6d7de6d4cSGreg Roach * This program is free software: you can redistribute it and/or modify 7d7de6d4cSGreg Roach * it under the terms of the GNU General Public License as published by 8d7de6d4cSGreg Roach * the Free Software Foundation, either version 3 of the License, or 9d7de6d4cSGreg Roach * (at your option) any later version. 10d7de6d4cSGreg Roach * This program is distributed in the hope that it will be useful, 11d7de6d4cSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12d7de6d4cSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13d7de6d4cSGreg Roach * GNU General Public License for more details. 14d7de6d4cSGreg Roach * You should have received a copy of the GNU General Public License 15d7de6d4cSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16d7de6d4cSGreg Roach */ 17d7de6d4cSGreg Roach 18d7de6d4cSGreg Roachdeclare(strict_types=1); 19d7de6d4cSGreg Roach 20d7de6d4cSGreg Roachnamespace Fisharebest\Webtrees\Http\Middleware; 21d7de6d4cSGreg Roach 22d7de6d4cSGreg Roachuse Fisharebest\Webtrees\TestCase; 23202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass; 24d7de6d4cSGreg Roach 25202c018bSGreg Roach#[CoversClass(PublicFiles::class)] 26d7de6d4cSGreg Roachclass PublicFilesTest extends TestCase 27d7de6d4cSGreg Roach{ 28d7de6d4cSGreg Roach public function testClass(): void 29d7de6d4cSGreg Roach { 30*a6d49169SGreg Roach self::assertTrue(class_exists(PublicFiles::class)); 31d7de6d4cSGreg Roach } 32d7de6d4cSGreg Roach} 33