Total Complexity | 5 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class SapiDetector |
||
19 | { |
||
20 | /** |
||
21 | * @SuppressWarnings(PHPMD.Superglobals) |
||
22 | */ |
||
23 | public static function isWebScript(): bool |
||
24 | { |
||
25 | return \PHP_SAPI === 'apache2handler' || str_contains(\PHP_SAPI, 'handler') || isset($_SERVER['REQUEST_METHOD']); |
||
26 | } |
||
27 | |||
28 | public static function isCliScript(): bool |
||
31 | } |
||
32 | } |
||
33 |