Sindbad~EG File Manager
<?php
/**
* Class Forminator_Calculator_Token
*
*/
class Forminator_Calculator_Parser_Token {
const TYPE_WORD = 1;
const TYPE_CHAR = 2;
const TYPE_NUMBER = 3;
/**
* @var int
*/
public $type;
/**
* @var string|int|float
*/
public $value;
/**
* @var int
*/
public $position;
public function __construct( $type, $value, $position ) {
$this->type = $type;
$this->value = $value;
$this->position = $position;
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists