| 1 | <?php |
||
| 8 | trait NamedEndpointBuilderTrait |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | protected $name; |
||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | protected $definitionClassName; |
||
| 18 | |||
| 19 | public function name(string $name) |
||
| 25 | |||
| 26 | public function definedBy(string $className) |
||
| 32 | |||
| 33 | protected function buildName(EndpointConfigurationInterface $configuration) |
||
| 38 | } |
||
| 39 |