ForkAPI::__construct PHP Méthode

__construct() public méthode

Default constructor
Deprecation:
public __construct ( string[optional] $publicKey = null, string[optional] $privateKey = null )
$publicKey string[optional]
$privateKey string[optional]
    public function __construct($publicKey = null, $privateKey = null)
    {
        if ($publicKey !== null) {
            $this->setPublicKey($publicKey);
        }
        if ($publicKey !== null) {
            $this->setPrivateKey($privateKey);
        }
    }