xref: /webtrees/app/Http/Routes/ApiRoutes.php (revision d11be7027e34e3121be11cc025421873364403f9)
12279b4f3SGreg Roach<?php
22279b4f3SGreg Roach
32279b4f3SGreg Roach/**
42279b4f3SGreg Roach * webtrees: online genealogy
5*d11be702SGreg Roach * Copyright (C) 2023 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;
2376d39c55SGreg Roachuse Aura\Router\Route;
242279b4f3SGreg Roach
252279b4f3SGreg Roach/**
262279b4f3SGreg Roach * Routing table for API requests
272279b4f3SGreg Roach */
282279b4f3SGreg Roachclass ApiRoutes
292279b4f3SGreg Roach{
30ac701fbdSGreg Roach    /**
3176d39c55SGreg Roach     * @param Map<Route> $router
32ac701fbdSGreg Roach     *
33ac701fbdSGreg Roach     * @return void
34ac701fbdSGreg Roach     */
3549528f2bSGreg Roach    public function load(Map $router): void
362279b4f3SGreg Roach    {
372279b4f3SGreg Roach    }
382279b4f3SGreg Roach}
39