| 1 | <?php |
||
| 14 | trait InOutControlBuilderTrait |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @psalm-var class-string |
||
| 18 | */ |
||
| 19 | protected $take; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @psalm-var class-string |
||
| 23 | */ |
||
| 24 | protected $return; |
||
| 25 | |||
| 26 | public function take(string $className) |
||
| 32 | |||
| 33 | public function return(string $className) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param EndpointConfig $config |
||
| 42 | * @return $this |
||
| 43 | * @throws EndpointBuildingException |
||
| 44 | */ |
||
| 45 | protected function buildInOutparameters(EndpointConfig $config) |
||
| 56 | } |
||
| 57 |