Overview

Namespaces

  • BN
    • Collections
    • Compiler
      • Grammar
      • Parser
        • Operator
        • Token
      • Postfix
        • Operands
        • Operator
        • Token
      • Scanner
        • Converter
      • Token
  • Demo
  • None

Classes

  • Token
  • TokenType
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php
 2: 
 3: namespace BN\Compiler\Token;
 4: 
 5: class Token
 6: {
 7:     public $type;
 8:     public $value;
 9: 
10:     public function __construct($type, $value)
11:     {
12:         $this->type = $type;
13:         $this->value = $value;
14:     }
15: }
16: 
BN-PHP - Big Number data type for PHP API documentation generated by ApiGen 2.8.0