PhpMigration\SymbolTable::get PHP Метод

get() публичный Метод

public get ( $key )
    public function get($key)
    {
        if (!$this->prepareKey($key)) {
            return null;
        }
        return isset($this->data[$key]) ? $this->data[$key] : null;
    }