whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
vendor
/
laravel
/
octane
/
src
/
Swoole
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/vendor/laravel/octane/src/Swoole/ServerStateFile.php
<?php namespace Laravel\Octane\Swoole; use RuntimeException; class ServerStateFile { public function __construct(protected string $path) { } /** * Read the server state from the server state file. */ public function read(): array { $state = is_readable($this->path) ? json_decode(file_get_contents($this->path), true) : []; return [ 'masterProcessId' => $state['masterProcessId'] ?? null, 'managerProcessId' => $state['managerProcessId'] ?? null, 'state' => $state['state'] ?? [], ]; } /** * Write the given process IDs to the server state file. */ public function writeProcessIds(int $masterProcessId, int $managerProcessId): void { if (! is_writable($this->path) && ! is_writable(dirname($this->path))) { throw new RuntimeException('Unable to write to process ID file.'); } file_put_contents($this->path, json_encode( array_merge($this->read(), [ 'masterProcessId' => $masterProcessId, 'managerProcessId' => $managerProcessId, ]), JSON_PRETTY_PRINT )); } /** * Write the given state array to the server state file. */ public function writeState(array $newState): void { if (! is_writable($this->path) && ! is_writable(dirname($this->path))) { throw new RuntimeException('Unable to write to process ID file.'); } file_put_contents($this->path, json_encode( array_merge($this->read(), ['state' => $newState]), JSON_PRETTY_PRINT )); } /** * Delete the process ID file. */ public function delete(): bool { if (is_writable($this->path)) { return unlink($this->path); } return false; } /** * Get the path to the process ID file. */ public function path(): string { return $this->path; } }
Copyright ©2021 || Defacer Indonesia