<?php

class Mc {
    private $QueryFormPath = __DIR__ . '/' . 'queryform';

    public function showX()
    {
        return $this->QueryFormPath;
    }
}


$a = new Mc();
echo $a->showX();