setNAGKey()
Set the NAG key
Method signature
public function setNAGKey($NAGKey)
Parameters
Name
Type
Description
nagKey
string
nagKey
Example
<?php
require 'vendor/autoload.php';
use CircularProtocol\Api\CircularProtocolAPI;
$circular = new CircularProtocolAPI();
$text = "your_nag_key";
$circular->setNAGKey($text);
Last updated