26 lines
419 B
PHP
26 lines
419 B
PHP
<?php
|
|
/**
|
|
* @license Copyright 2011-2014 BitPay Inc., MIT License
|
|
* see https://github.com/bitpay/php-bitpay-client/blob/master/LICENSE
|
|
*/
|
|
|
|
namespace Bitpay;
|
|
|
|
/**
|
|
* Creates an application for a new merchant account
|
|
*
|
|
* @package Bitpay
|
|
*/
|
|
interface ApplicationInterface
|
|
{
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getUsers();
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getOrgs();
|
|
}
|