1 | <?php |
||
11 | class ObtainBankAccount extends Generic |
||
12 | { |
||
13 | /** |
||
14 | * @var BankAccountInterface |
||
15 | */ |
||
16 | protected $bankAccount; |
||
17 | |||
18 | /** |
||
19 | * @param BankAccountInterface $bankAccount |
||
20 | */ |
||
21 | public function set(BankAccountInterface $bankAccount): void |
||
25 | |||
26 | /** |
||
27 | * @return BankAccountInterface |
||
28 | */ |
||
29 | public function obtain(): BankAccountInterface |
||
37 | } |
||
38 |