You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MarketInterface.php 292 B

5 anni fa
5 anni fa
5 anni fa
5 anni fa
5 anni fa
12345678910111213141516171819
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Exchanges;
  4. use App\Utils\Money\CurrencyPair;
  5. use App\Utils\Order\Book\OrderBook;
  6. interface MarketInterface
  7. {
  8. public function getPair(): CurrencyPair;
  9. public function getOrderBook(): OrderBook;
  10. public function getFee(): float;
  11. }