| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class PopenWrapper implements PopenWrapperInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Runs a shell command |
||
| 14 | * |
||
| 15 | * If the execution succeeds, the resource will be closed on shutdown |
||
| 16 | * |
||
| 17 | * @param string $command Command to execute (ensure the arguments get escaped correctly!) |
||
| 18 | * |
||
| 19 | * @return resource|null |
||
| 20 | * |
||
| 21 | * @codeCoverageIgnore |
||
| 22 | */ |
||
| 23 | public function run(string $command): mixed |
||
| 36 |