PhpMigration\Changes\AbstractIntroduced::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        if (isset($this->funcTable)) {
            $this->funcTable = new SymbolTable($this->funcTable, SymbolTable::IC);
        }
        if (isset($this->methodTable)) {
            $this->methodTable = new SymbolTable($this->methodTable, SymbolTable::IC);
        }
        if (isset($this->classTable)) {
            $this->classTable = new SymbolTable($this->classTable, SymbolTable::IC);
        }
        if (isset($this->constTable)) {
            $this->constTable = new SymbolTable($this->constTable, SymbolTable::CS);
        }
    }