Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 555 Bytes

credentials.md

File metadata and controls

22 lines (12 loc) · 555 Bytes

Credentials

This class contains the connection credentials to the Orange Money api.These identifiers are retrieved from the operator after a contract signature.

Use case

The arguments of the class are respectively: your username received by Orange Burkina, the password and finally the number of the the acceptor/partner who receives the payment merchant_number.

<?php

use CPay\Sdk\Config\Credentials;

$credentials = Credentials::from('username', 'password', 'merchant_number');

Go back