(bool $cond, string $message, array &$errors)
| 58 | } |
| 59 | |
| 60 | function failIf(bool $cond, string $message, array &$errors): void |
| 61 | { |
| 62 | if ($cond) { |
| 63 | $errors[] = $message; |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | function captureControllerOutput(callable $callback): string |
| 68 | { |
no outgoing calls
no test coverage detected