| 1 | <?php |
||
| 11 | class ReportRunnerFactory |
||
| 12 | { |
||
| 13 | public const JAPHA_JASPER_V6 = 'japha_jasper_v6'; |
||
| 14 | |||
| 15 | public const SUPPORTED_RUNNERS = [ |
||
| 16 | self::JAPHA_JASPER_V6 => JaphaJasperV6Runner::class |
||
| 17 | ]; |
||
| 18 | |||
| 19 | 2 | public function __invoke(BridgeAdapter $bridgeAdapter, string $runner = self::JAPHA_JASPER_V6): ReportRunnerInterface |
|
| 35 | } |
||
| 36 |