xref: /webtrees/app/Http/Routes/ApiRoutes.php (revision be410956749924424eea85efda7f6cf7de92f87a)
12279b4f3SGreg Roach<?php
22279b4f3SGreg Roach
32279b4f3SGreg Roach/**
42279b4f3SGreg Roach * webtrees: online genealogy
589f7189bSGreg Roach * Copyright (C) 2021 webtrees development team
62279b4f3SGreg Roach * This program is free software: you can redistribute it and/or modify
72279b4f3SGreg Roach * it under the terms of the GNU General Public License as published by
82279b4f3SGreg Roach * the Free Software Foundation, either version 3 of the License, or
92279b4f3SGreg Roach * (at your option) any later version.
102279b4f3SGreg Roach * This program is distributed in the hope that it will be useful,
112279b4f3SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
122279b4f3SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
132279b4f3SGreg Roach * GNU General Public License for more details.
142279b4f3SGreg Roach * You should have received a copy of the GNU General Public License
1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
162279b4f3SGreg Roach */
172279b4f3SGreg Roach
182279b4f3SGreg Roachdeclare(strict_types=1);
192279b4f3SGreg Roach
202279b4f3SGreg Roachnamespace Fisharebest\Webtrees\Http\Routes;
212279b4f3SGreg Roach
222279b4f3SGreg Roachuse Aura\Router\Map;
232279b4f3SGreg Roach
242279b4f3SGreg Roach/**
252279b4f3SGreg Roach * Routing table for API requests
262279b4f3SGreg Roach */
272279b4f3SGreg Roachclass ApiRoutes
282279b4f3SGreg Roach{
29ac701fbdSGreg Roach    /**
30ac701fbdSGreg Roach     * @param Map $router
31ac701fbdSGreg Roach     *
32ac701fbdSGreg Roach     * @return void
33ac701fbdSGreg Roach     */
34*be410956SGreg Roach    public function load(/** @scrutinizer ignore-unused */ Map $router): void
352279b4f3SGreg Roach    {
362279b4f3SGreg Roach    }
372279b4f3SGreg Roach}
38