| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class GetTradingFeeRateRequest extends AbstractParameters implements IGetTradingFeeRateRequestInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Symbol name |
||
| 12 | * @var string $symbol |
||
| 13 | */ |
||
| 14 | protected string $symbol; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @return string |
||
| 18 | */ |
||
| 19 | public function getSymbol(): string |
||
| 20 | { |
||
| 21 | return $this->symbol; |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param string $symbol |
||
| 26 | * @return GetTradingFeeRateRequest |
||
| 27 | */ |
||
| 28 | public function setSymbol(string $symbol): self |
||
| 32 | } |
||
| 33 | } |
||
| 34 |