| 1 | <?php  | 
            ||
| 13 | class Accounts  | 
            ||
| 14 | { | 
            ||
| 15 | /**  | 
            ||
| 16 | * Mondo client.  | 
            ||
| 17 | *  | 
            ||
| 18 | * @var ClientInterface  | 
            ||
| 19 | */  | 
            ||
| 20 | protected $client;  | 
            ||
| 21 | |||
| 22 | /**  | 
            ||
| 23 | * Accounts constructor.  | 
            ||
| 24 | *  | 
            ||
| 25 | * @param ClientInterface $client  | 
            ||
| 26 | */  | 
            ||
| 27 | public function __construct(ClientInterface $client)  | 
            ||
| 31 | |||
| 32 | /**  | 
            ||
| 33 | * Get a list of accounts for the authorised user.  | 
            ||
| 34 | *  | 
            ||
| 35 | * @return Response\Accounts  | 
            ||
| 36 | */  | 
            ||
| 37 | public function getAccounts()  | 
            ||
| 44 | }  | 
            ||
| 45 |