Overview

Namespaces

  • Liberty
  • None

Classes

  • Liberty\BigInteger
  • Liberty\Block
  • Liberty\Blockchain
  • Liberty\Collection
  • Liberty\CollectionFileList
  • Liberty\File
  • Liberty\Folder
  • Liberty\INI
  • Liberty\LECDSA
  • Liberty\Onecrypt
  • Liberty\SSV
  • Liberty\Text
  • Liberty\Transaction
  • Liberty\Wallet
  • Liberty\WebPeer

Functions

  • __autoload
  • Overview
  • Namespace
  • Class
 1: <?php
 2: 
 3: /**
 4:  * The Liberty Framework
 5:  * 
 6:  * Copyright (C) 2011-2017. Liberty Group <cryptolibertygroup@gmail.com>
 7:  * MIT License. 
 8:  *
 9:  * @category  Cryptocurrency
10:  * @package   Liberty
11:  * @license   MIT License.
12:  * @version   1.0.0
13:  * @since     2017-01-01
14:  * @author    Liberty Group <cryptolibertygroup@gmail.com>
15:  */
16: 
17: 
18: 
19: 
20: /**
21:  * Autoloader
22: */
23: function __autoload($classname) {
24:     $class = $classname . ".php";
25:     include_once($class);
26: }
27: 
28: ?>
29: 
API documentation generated by ApiGen