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