| 1 | <?php |
||
| 7 | class SendOptions extends OutgoingOptions |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string|null |
||
| 11 | */ |
||
| 12 | private $destination; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var bool |
||
| 16 | */ |
||
| 17 | private $isRoutedToLocalInstance = false; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $destination |
||
| 21 | */ |
||
| 22 | 2 | public function setExplicitDestination($destination) |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @return string|null |
||
| 31 | */ |
||
| 32 | 4 | public function getExplicitDestination() |
|
| 36 | |||
| 37 | 2 | public function routeToLocalEndpointInstance() |
|
| 41 | |||
| 42 | /** |
||
| 43 | * @return bool |
||
| 44 | */ |
||
| 45 | 4 | public function isRoutedToLocalInstance() |
|
| 49 | } |
||
| 50 |