| Total Complexity | 1 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | final class DaemonSettings |
||
| 17 | { |
||
| 18 | public const TARGET_REGEX_DEFAULT = '^php-fpm'; |
||
| 19 | |||
| 20 | public string $target_regex; |
||
| 21 | public int $threads; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * DaemonSettings constructor. |
||
| 25 | * @param string $target_regex |
||
| 26 | * @param int $threads |
||
| 27 | */ |
||
| 28 | public function __construct(string $target_regex, int $threads) |
||
| 34 |