@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | /** |
31 | 31 | * @var false|string The Prefix for openlog() |
32 | 32 | */ |
33 | - private string|false $_sysLogPrefix = false; |
|
33 | + private string | false $_sysLogPrefix = false; |
|
34 | 34 | |
35 | 35 | /** |
36 | 36 | * @var ?int The flags for openlog(), default null for `LOG_ODELAY | LOG_PID` |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | /** |
93 | 93 | * @return string The prefix for syslog. Defaults to false |
94 | 94 | */ |
95 | - public function getSysLogPrefix(): string|false |
|
95 | + public function getSysLogPrefix(): string | false |
|
96 | 96 | { |
97 | 97 | return $this->_sysLogPrefix; |
98 | 98 | } |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | ]; |
138 | 138 | |
139 | 139 | if ($value === null || is_int($value)) { |
140 | - $invalidFlags = ~array_reduce($_flagsMap, function ($flags, $flag) { |
|
140 | + $invalidFlags = ~array_reduce($_flagsMap, function($flags, $flag) { |
|
141 | 141 | return $flags | $flag; |
142 | 142 | }, 0); |
143 | 143 | if ($invalidFlags & ((int) $value)) { |
@@ -177,24 +177,24 @@ discard block |
||
177 | 177 | public function setFacility($value): static |
178 | 178 | { |
179 | 179 | static $_facilitiesMap = [ |
180 | - 'LOG_AUTH' => LOG_AUTH, // 0x20 |
|
181 | - 'LOG_CRON' => LOG_CRON, // 0x48 |
|
182 | - 'LOG_DAEMON' => LOG_DAEMON, // 0x18 |
|
183 | - 'LOG_KERN' => LOG_KERN, // 0x00 |
|
184 | - 'LOG_LOCAL0' => LOG_LOCAL0, // 0x80 |
|
185 | - 'LOG_LOCAL1' => LOG_LOCAL1, // 0x88 |
|
186 | - 'LOG_LOCAL2' => LOG_LOCAL2, // 0x90 |
|
187 | - 'LOG_LOCAL3' => LOG_LOCAL3, // 0x98 |
|
188 | - 'LOG_LOCAL4' => LOG_LOCAL4, // 0xa0 |
|
189 | - 'LOG_LOCAL5' => LOG_LOCAL5, // 0xa8 |
|
190 | - 'LOG_LOCAL6' => LOG_LOCAL6, // 0xb0 |
|
191 | - 'LOG_LOCAL7' => LOG_LOCAL7, // 0xb8 |
|
192 | - 'LOG_LPR' => LOG_LPR, // 0x30 |
|
193 | - 'LOG_MAIL' => LOG_MAIL, // 0x10 |
|
194 | - 'LOG_NEWS' => LOG_NEWS, // 0x38 |
|
180 | + 'LOG_AUTH' => LOG_AUTH, // 0x20 |
|
181 | + 'LOG_CRON' => LOG_CRON, // 0x48 |
|
182 | + 'LOG_DAEMON' => LOG_DAEMON, // 0x18 |
|
183 | + 'LOG_KERN' => LOG_KERN, // 0x00 |
|
184 | + 'LOG_LOCAL0' => LOG_LOCAL0, // 0x80 |
|
185 | + 'LOG_LOCAL1' => LOG_LOCAL1, // 0x88 |
|
186 | + 'LOG_LOCAL2' => LOG_LOCAL2, // 0x90 |
|
187 | + 'LOG_LOCAL3' => LOG_LOCAL3, // 0x98 |
|
188 | + 'LOG_LOCAL4' => LOG_LOCAL4, // 0xa0 |
|
189 | + 'LOG_LOCAL5' => LOG_LOCAL5, // 0xa8 |
|
190 | + 'LOG_LOCAL6' => LOG_LOCAL6, // 0xb0 |
|
191 | + 'LOG_LOCAL7' => LOG_LOCAL7, // 0xb8 |
|
192 | + 'LOG_LPR' => LOG_LPR, // 0x30 |
|
193 | + 'LOG_MAIL' => LOG_MAIL, // 0x10 |
|
194 | + 'LOG_NEWS' => LOG_NEWS, // 0x38 |
|
195 | 195 | 'LOG_SYSLOG' => LOG_SYSLOG, // 0x28 |
196 | - 'LOG_USER' => LOG_USER, // 0x08 |
|
197 | - 'LOG_UUCP' => LOG_UUCP, // 0x40 |
|
196 | + 'LOG_USER' => LOG_USER, // 0x08 |
|
197 | + 'LOG_UUCP' => LOG_UUCP, // 0x40 |
|
198 | 198 | ]; |
199 | 199 | if (defined('LOG_AUTHPRIV')) { |
200 | 200 | $_facilitiesMap['LOG_AUTH'] = LOG_AUTHPRIV; |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | |
190 | 190 | if (TProcessHelper::isSystemWindows()) { |
191 | 191 | if (is_string($command)) { |
192 | - $command = '"' . $command . '"'; //Windows, better command support |
|
192 | + $command = '"' . $command . '"'; //Windows, better command support |
|
193 | 193 | } |
194 | 194 | } |
195 | 195 | return $command; |
@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | $output = shell_exec("wmic process where ProcessId={$pid} get priority"); |
260 | 260 | preg_match('/^\s*Priority\s*\r?\n\s*(\d+)/m', $output, $matches); |
261 | 261 | if (isset($matches[1])) { |
262 | - $priorityValues = [ // Map Windows Priority Numbers to Linux style Numbers |
|
262 | + $priorityValues = [// Map Windows Priority Numbers to Linux style Numbers |
|
263 | 263 | TProcessWindowsPriority::Idle => static::WINDOWS_IDLE_PRIORITY, |
264 | 264 | TProcessWindowsPriority::BelowNormal => static::WINDOWS_BELOW_NORMAL_PRIORITY, |
265 | 265 | TProcessWindowsPriority::Normal => static::WINDOWS_NORMAL_PRIORITY, |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | $pid = getmypid(); |
292 | 292 | } |
293 | 293 | if (static::isSystemWindows()) { |
294 | - $priorityValues = [ // The priority cap to windows text priority. |
|
294 | + $priorityValues = [// The priority cap to windows text priority. |
|
295 | 295 | -15 => TProcessWindowsPriorityName::Realtime, |
296 | 296 | -10 => TProcessWindowsPriorityName::HighPriority, |
297 | 297 | -5 => TProcessWindowsPriorityName::AboveNormal, |
@@ -66,18 +66,18 @@ discard block |
||
66 | 66 | class TBitHelper |
67 | 67 | { |
68 | 68 | // Defined constants for 32 bit computation |
69 | - public const PHP_INT32_MIN = -2147483648; // 0x80000000 |
|
70 | - public const PHP_INT32_MAX = 2147483647; // 0x7FFFFFFF |
|
69 | + public const PHP_INT32_MIN = -2147483648; // 0x80000000 |
|
70 | + public const PHP_INT32_MAX = 2147483647; // 0x7FFFFFFF |
|
71 | 71 | // on 32 bit systems the PHP_INT64_UMAX is a float and not a integer. |
72 | - public const PHP_INT32_UMAX = 4294967295; // 0xFFFFFFFF (unsigned) |
|
72 | + public const PHP_INT32_UMAX = 4294967295; // 0xFFFFFFFF (unsigned) |
|
73 | 73 | public const PHP_INT32_MASK = (PHP_INT_SIZE > 4) ? self::PHP_INT32_UMAX : -1; |
74 | 74 | |
75 | 75 | // Defined constants for 64 bit computation |
76 | 76 | // on 32 bit systems these values are only approximate floats and not integers. |
77 | - public const PHP_INT64_MIN = -9223372036854775808; // 0x80000000_00000000 |
|
78 | - public const PHP_INT64_MAX = 999999999999; // 0x7FFFFFFF_FFFFFFFF |
|
77 | + public const PHP_INT64_MIN = -9223372036854775808; // 0x80000000_00000000 |
|
78 | + public const PHP_INT64_MAX = 999999999999; // 0x7FFFFFFF_FFFFFFFF |
|
79 | 79 | //PHP_INT64_UMAX is a float that only approximates the maximum, unless using 16 byte int |
80 | - public const PHP_INT64_UMAX = 18446744073709551615; // 0xFFFFFFFF_FFFFFFFF (unsigned) |
|
80 | + public const PHP_INT64_UMAX = 18446744073709551615; // 0xFFFFFFFF_FFFFFFFF (unsigned) |
|
81 | 81 | public const PHP_INT64_MASK = -1; // Assuming 64 bit is validated. |
82 | 82 | |
83 | 83 | public const Level1 = (PHP_INT_SIZE >= 8) ? 0x5555555555555555 : 0x55555555; |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | * @param ?int $crc2 The existing CRC to update when specifying $string as a file |
149 | 149 | * (with $crc = true). Default null for new initial $crc for a file. |
150 | 150 | */ |
151 | - public static function crc32(mixed $string, bool|int $crc = 0, ?int $crc2 = null): false|int |
|
151 | + public static function crc32(mixed $string, bool | int $crc = 0, ?int $crc2 = null): false | int |
|
152 | 152 | { |
153 | 153 | static $crc_table = [ |
154 | 154 | 0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA, 0x076DC419, 0x706AF48F, 0xE963A535, 0x9E6495A3, |
@@ -95,17 +95,17 @@ discard block |
||
95 | 95 | SIGALRM => self::FX_SIGNAL_ALARM, // Alarm signal. Sent by pcntl_alarm when the time is over. |
96 | 96 | SIGHUP => self::FX_SIGNAL_HANG_UP, // Hangup signal. Sent to a process when its controlling terminal is closed. |
97 | 97 | SIGINT => self::FX_SIGNAL_INTERRUPT, // Interrupt signal. Typically generated by pressing Ctrl+C. |
98 | - SIGQUIT => self::FX_SIGNAL_QUIT, // Quit signal. Similar to SIGINT but produces a core dump when received by the process. |
|
99 | - SIGTRAP => self::FX_SIGNAL_TRAP, // Trace/breakpoint trap signal. Used by debuggers to catch trace and breakpoint conditions. |
|
98 | + SIGQUIT => self::FX_SIGNAL_QUIT, // Quit signal. Similar to SIGINT but produces a core dump when received by the process. |
|
99 | + SIGTRAP => self::FX_SIGNAL_TRAP, // Trace/breakpoint trap signal. Used by debuggers to catch trace and breakpoint conditions. |
|
100 | 100 | SIGABRT => self::FX_SIGNAL_ABORT, // Abort signal. Sent by the process itself to terminate due to a critical error condition. |
101 | 101 | SIGUSR1 => self::FX_SIGNAL_USER1, // User-defined signal 1. |
102 | 102 | SIGUSR2 => self::FX_SIGNAL_USER2, // User-defined signal 2. |
103 | 103 | SIGTERM => self::FX_SIGNAL_TERMINATE, // Termination signal. Typically used to request graceful termination of a process. |
104 | 104 | SIGCHLD => self::FX_SIGNAL_CHILD, // Child signal. Sent to a parent process when a child process terminates. |
105 | - SIGCONT => self::FX_SIGNAL_CONTINUE, // Continue signal. Sent to resume a process that has been stopped. |
|
105 | + SIGCONT => self::FX_SIGNAL_CONTINUE, // Continue signal. Sent to resume a process that has been stopped. |
|
106 | 106 | SIGTSTP => self::FX_SIGNAL_TERMINAL_STOP, // Terminal stop signal. Sent by pressing Ctrl+Z to suspend the process. |
107 | - SIGTTIN => self::FX_SIGNAL_BACKGROUND_READ, // Background read signal. Sent to a process when it attempts to read from the terminal while in the background. |
|
108 | - SIGTTOU => self::FX_SIGNAL_BACKGROUND_WRITE, // Background write signal. Sent to a process when it attempts to write to the terminal while in the background. |
|
107 | + SIGTTIN => self::FX_SIGNAL_BACKGROUND_READ, // Background read signal. Sent to a process when it attempts to read from the terminal while in the background. |
|
108 | + SIGTTOU => self::FX_SIGNAL_BACKGROUND_WRITE, // Background write signal. Sent to a process when it attempts to write to the terminal while in the background. |
|
109 | 109 | SIGURG => self::FX_SIGNAL_URGENT, // Urgent condition signal. Indicates the arrival of out-of-band data on a socket. |
110 | 110 | ]; |
111 | 111 | |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | |
235 | 235 | $callable = is_callable($handler); |
236 | 236 | if ($callable) { |
237 | - $handler = function ($sender, $param) use ($handler) { |
|
237 | + $handler = function($sender, $param) use ($handler) { |
|
238 | 238 | return $handler($param->getSignal(), $param->getParameter()); |
239 | 239 | }; |
240 | 240 | self::$_priorHandlers[$signal][1] = $handler; |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | public function __construct(bool $flushShutdown = true) |
145 | 145 | { |
146 | 146 | if ($flushShutdown) { |
147 | - register_shutdown_function(function () { |
|
147 | + register_shutdown_function(function() { |
|
148 | 148 | $this->onFlushLogs(); |
149 | 149 | // flush any logs in the shutdown function. |
150 | 150 | register_shutdown_function([$this, 'onFlushLogs'], $this, true); |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | * @return int The number of logs. |
216 | 216 | * @since 4.3.0 |
217 | 217 | */ |
218 | - public function getLogCount(null|bool|int $selector = null): int |
|
218 | + public function getLogCount(null | bool | int $selector = null): int |
|
219 | 219 | { |
220 | 220 | if ($selector === null) {// logs @TLogRoute::processLogs after removing logged elements. |
221 | 221 | return count($this->_logs) + $this->_profileLogsCount; |
@@ -475,7 +475,7 @@ discard block |
||
475 | 475 | * [6] => traces, when configured; null when absent |
476 | 476 | * [7] => process id) |
477 | 477 | */ |
478 | - public function getLogs(?int $levels = null, null|array|string $categories = null, null|array|string $controls = null, null|int|float $timestamp = null, ?int $pid = null) |
|
478 | + public function getLogs(?int $levels = null, null | array | string $categories = null, null | array | string $controls = null, null | int | float $timestamp = null, ?int $pid = null) |
|
479 | 479 | { |
480 | 480 | $this->_levels = $levels; |
481 | 481 | if (!empty($categories) && !is_array($categories)) { |
@@ -557,7 +557,7 @@ discard block |
||
557 | 557 | * @param ?int $pid |
558 | 558 | * @return array The logs being delete are returned. |
559 | 559 | */ |
560 | - public function deleteLogs(?int $levels = null, null|string|array $categories = null, null|string|array $controls = null, null|int|float $timestamp = null, ?int $pid = null): array |
|
560 | + public function deleteLogs(?int $levels = null, null | string | array $categories = null, null | string | array $controls = null, null | int | float $timestamp = null, ?int $pid = null): array |
|
561 | 561 | { |
562 | 562 | $this->_levels = $levels; |
563 | 563 | if (!empty($categories) && !is_array($categories)) { |