PluginProbe
Metricool – Social media and site statistics / 2.0.2
Metricool – Social media and site statistics v2.0.2
2.1.0 2.0.2 2.0.1 2.0.0 1.27 trunk
metricool / app / Interfaces / MiddlewareInterface.php

MiddlewareInterface.php in Metricool – Social media and site statistics 2.0.2, at app/Interfaces/MiddlewareInterface.php

15 lines 337 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 declare(strict_types=1);
4
5 namespace Metricool\Interfaces;
6
7 interface MiddlewareInterface
8 {
9 /**
10 * Handle an incoming request. Return null to continue to the next
11 * middleware/callback, or return a WP_REST_Response to short-circuit.
12 */
13 public function handle(\WP_REST_Request $request): ?\WP_REST_Response;
14 }
15