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