| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class MySqlRoutineWrapperGeneratorWorker extends CommonRoutineWrapperGeneratorWorker |
||
| 16 | { |
||
| 17 | //-------------------------------------------------------------------------------------------------------------------- |
||
| 18 | /** |
||
| 19 | * @inheritdoc |
||
| 20 | */ |
||
| 21 | protected function buildRoutineWrapper(WrapperContext $context): void |
||
| 22 | { |
||
| 23 | $wrapper = MysqlWrapper::createRoutineWrapper($context); |
||
| 24 | $wrapper->generateMethod($context); |
||
| 25 | |||
| 26 | $this->imports = array_merge($this->imports, $wrapper->getImports()); |
||
| 27 | } |
||
| 28 | |||
| 29 | //-------------------------------------------------------------------------------------------------------------------- |
||
| 30 | /** |
||
| 31 | * @inheritdoc |
||
| 32 | */ |
||
| 33 | protected function createDataTypeHelper(): CommonDataTypeHelper |
||
| 36 | } |
||
| 37 | |||
| 42 |