Overview

Namespaces

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

Classes

  • Benchmark
  • Controller
  • GrammarDecorator
  • Model
  • NativeEval
  • Presenter

Functions

  • examples
  • expressionsToLines
  • grammar
  • transformVars
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php
 2: 
 3: namespace Demo;
 4: 
 5: class Model
 6: {
 7:     public $input = '';
 8:     public $inputVariables = '';
 9:     public $result = 0;
10:     public $error = '';
11:     public $variables = array();
12: 
13:     public function __construct($input, $inputVariables)
14:     {
15:         $this->input = $input;
16:         $this->inputVariables = $inputVariables;
17:     }
18: }
19: 
BN-PHP - Big Number data type for PHP API documentation generated by ApiGen 2.8.0