1 | <?php |
||
9 | class OutputHelper |
||
10 | { |
||
11 | /** |
||
12 | * Call a user function given with an array of parameters and catch its output. |
||
13 | * @param callable $callback function to be called |
||
14 | * @param array $arguments parameters to be passed to the function, as an indexed array |
||
15 | * @return array array containing result returned by function and its output. |
||
16 | * @throws \Exception|\Throwable |
||
17 | */ |
||
18 | public static function catchOutput($callback, $arguments = []) |
||
36 | |||
37 | /** |
||
38 | * Closes the output buffer opened above if it has not been closed already. |
||
39 | * @param int $obInitialLevel initial level of the output buffering mechanism |
||
40 | */ |
||
41 | protected static function exceptionHandler($obInitialLevel) |
||
49 | } |
||
50 |
Scrutinizer analyzes your
composer.json
/composer.lock
file if available to determine the classes, and functions that are defined by your dependencies.It seems like the listed class was neither found in your dependencies, nor was it found in the analyzed files in your repository. If you are using some other form of dependency management, you might want to disable this analysis.