Custom Files and PHPMaker functions (without include common files)

Hi,
I’m trying to access PHPMaker functions like ExecuteRows() from a custom file without including common files (I don’t want menu and header because it generates a word document).I’ve done this in earlier versions of PHPMaker but now I got problems:This is the beginning:

<?php

namespace PHPMaker2023\doctpl;

require_once 'vendor/autoload.php';
require_once 'src/phpfn.php';

Then I try to use ExecuteRows() with error:Fatal error: Uncaught TypeError: Argument 1 passed to Dflydev\DotAccessData\Data::__construct() must be of the type array, null given, called in C:\wamp\www\doctpl\src\phpfn.php on line 34 and defined in C:\wamp\www\doctpl\vendor\dflydev\dot-access-data\src\Data.php on line 40
( ! ) TypeError: Argument 1 passed to Dflydev\DotAccessData\Data::__construct() must be of the type array, null given, called in C:\wamp\www\doctpl\src\phpfn.php on line 34 in C:\wamp\www\doctpl\vendor\dflydev\dot-access-data\src\Data.php on line 40The ExecuteRows row for testing looks like this:

$CompanyData = ExecuteRows("SELECT * FROM `docs` WHERE `id` = 14");

What am I doing wrong?

This is the entire content of the test file:

<?php
namespace PHPMaker2023\doctpl;

//Include PHPWord
require_once 'vendor/autoload.php';
require_once 'src/phpfn.php';

$CompanyData = ExecuteRows("SELECT * FROM `docs` WHERE `id` = 14");
echo var_dump($CompanyData) . "<br>";
exit(0);

?>

Sorry everybody, I have been dealing with this for a while. But right after I asked the question here; I looked into index.php in app root and found this rows to include:

// Require files
require_once "vendor/autoload.php";
require_once "src/constants.php";
require_once "src/config.php";
require_once "src/phpfn.php";
require_once "src/userfn.php";

IT WORKS! But still, is this the best way of doing this?/Måns

You may read https://discourse.hkvstore.com/t/using-route-action-server-event-v2021/3393/1