setNAGKey()

Set the NAG key

Method signature

public function setNAGKey($NAGKey)

Parameters

NameTypeDescription

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