| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class LastTradedPriceRequest extends AbstractParameters implements ILastTradedPriceRequestInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Name of the trading pair |
||
| 13 | * @required false |
||
| 14 | * @var string $symbol |
||
| 15 | */ |
||
| 16 | protected string $symbol; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return string |
||
| 20 | */ |
||
| 21 | public function getSymbol(): string |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param string $symbol |
||
| 28 | * @return LastTradedPrice |
||
| 29 | */ |
||
| 30 | public function setSymbol(string $symbol): self |
||
| 36 |