Skip to content

hubid() ~ helper

Hub Culture edited this page Aug 10, 2018 · 1 revision

Helper function

require_once 'vendor/autoload.php';

use HubID\HubAPI;


function hubid()
{
  static $hubid;

  if ($hubid) {
    return $hubid;
  }

  $config = [
    'private_key' => '',
    'public_key' => '',
    'hubUrl' => 'https://id.hubculture.com',  
  ];

  return (new HubAPI($config));
}

Clone this wiki locally