Prototype for an API method
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / system / endpoint / PostRequest.class.php
1 <?php
2
3 namespace wcf\system\endpoint;
4
5 #[\Attribute(\Attribute::TARGET_METHOD)]
6 final class PostRequest
7 {
8 public function __construct(
9 public readonly string $uri,
10 ) {
11 }
12 }