Nette\Reflection\Extension::getFunctions PHP Method

getFunctions() public method

public getFunctions ( )
    public function getFunctions()
    {
        foreach ($res = parent::getFunctions() as $key => $val) {
            $res[$key] = new GlobalFunction($key);
        }
        return $res;
    }