PluginProbe
SlimStat Analytics / trunk
SlimStat Analytics vtrunk
5.5.0 5.4.12 4.7.4 4.7.4.1 4.7.5 4.7.5.1 4.7.5.2 4.7.5.3 4.7.6 4.7.6.1 4.7.7 4.7.8 4.7.8.1 4.7.8.2 4.7.8.3 4.7.9 4.7.9.1 4.8 4.8.1 4.8.2 4.8.3 4.8.4 4.8.4.1 4.8.5 4.8.5.1 All 212 releases
wp-slimstat / src / Interfaces / RestControllerInterface.php

RestControllerInterface.php in SlimStat Analytics trunk, at src/Interfaces/RestControllerInterface.php

15 lines 248 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // src/Interfaces/RestControllerInterface.php
3
4 declare(strict_types=1);
5
6 namespace SlimStat\Interfaces;
7
8 interface RestControllerInterface
9 {
10 /**
11 * Registers the REST API routes.
12 */
13 public function register_routes(): void;
14 }
15