run:R W Run
DIR
2026-03-11 16:18:52
R W Run
DIR
2026-03-11 16:18:52
R W Run
DIR
2026-03-11 16:18:52
R W Run
DIR
2026-03-11 16:18:52
R W Run
DIR
2026-03-11 16:18:52
R W Run
DIR
2026-03-11 16:18:52
R W Run
DIR
2026-03-11 16:18:52
R W Run
860 By
2026-03-11 16:18:52
R W Run
9.12 KB
2026-03-11 16:18:52
R W Run
652 By
2026-03-11 16:18:52
R W Run
15.03 KB
2026-03-11 16:18:52
R W Run
1.09 KB
2026-03-11 16:18:52
R W Run
709 By
2026-03-11 16:18:52
R W Run
2.96 KB
2026-03-11 16:18:52
R W Run
12.14 KB
2026-03-11 16:18:52
R W Run
5.51 KB
2026-03-11 16:18:52
R W Run
28.93 KB
2026-03-11 16:18:52
R W Run
1.47 KB
2026-03-11 16:18:52
R W Run
867 By
2026-03-11 16:18:52
R W Run
33.2 KB
2026-03-11 16:18:52
R W Run
4.18 KB
2026-03-11 16:18:52
R W Run
8.89 KB
2026-03-11 16:18:52
R W Run
5.3 KB
2026-03-11 16:18:52
R W Run
1.51 KB
2026-03-11 16:18:52
R W Run
error_log
📄Capability.php
1<?php
2/**
3 * Capability interface declaring the known capabilities.
4 *
5 * @package Requests\Utilities
6 */
7
8namespace WpOrg\Requests;
9
10/**
11 * Capability interface declaring the known capabilities.
12 *
13 * This is used as the authoritative source for which capabilities can be queried.
14 *
15 * @package Requests\Utilities
16 */
17interface Capability {
18
19 /**
20 * Support for SSL.
21 *
22 * @var string
23 */
24 const SSL = 'ssl';
25
26 /**
27 * Collection of all capabilities supported in Requests.
28 *
29 * Note: this does not automatically mean that the capability will be supported for your chosen transport!
30 *
31 * @var string[]
32 */
33 const ALL = [
34 self::SSL,
35 ];
36}
37