Conditions | 4 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function generateIpcKey($pathname, $projectId = 'p') |
||
19 | { |
||
20 | if (is_numeric($pathname)) { |
||
21 | return $pathname; |
||
22 | } |
||
23 | if (!file_exists($pathname) && !touch($pathname)) { |
||
24 | throw new RuntimeException(sprintf("Cannot create the files [%s]", $pathname)); |
||
25 | } |
||
26 | return ftok($pathname, $projectId); |
||
27 | } |
||
28 | } |
||
29 |