| 1 | <?php |
||
| 8 | class GatewayRegistry |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var Gateway[] |
||
| 12 | */ |
||
| 13 | protected $gateways = []; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param Gateway $gateway |
||
| 17 | */ |
||
| 18 | 4 | public function set(Gateway $gateway) |
|
| 22 | |||
| 23 | /** |
||
| 24 | * @param Destination $destination |
||
| 25 | * @return Gateway |
||
| 26 | */ |
||
| 27 | 5 | public function get(Destination $destination): Gateway |
|
| 41 | } |
||
| 42 |