| Conditions | 3 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | public function write(int $masterPid, int $managerPid): void |
||
| 32 | { |
||
| 33 | if (! is_writable($this->pidFile) |
||
| 34 | && ! is_writable(dirname($this->pidFile)) |
||
| 35 | ) { |
||
| 36 | throw new \RuntimeException( |
||
| 37 | sprintf('Pid file "%s" is not writable', $this->pidFile) |
||
| 38 | ); |
||
| 39 | } |
||
| 40 | |||
| 41 | file_put_contents($this->pidFile, $masterPid . ',' . $managerPid); |
||
| 42 | } |
||
| 89 |