php-bitpay-client/examples/Currencies.php
2014-09-12 06:44:37 -04:00

12 lines
236 B
PHP

<?php
require __DIR__ . '/../vendor/autoload.php';
$bitpay = new \Bitpay\Bitpay();
$client = $bitpay->get('client');
$currencies = $client->getCurrencies();
/** @var \Bitpay\Currency $currencies[0] **/
var_dump($currencies[0]);