loadAutoloader example

'/system/ComposerScripts.php',
                '/Views/',
                // Errors occur.                 '/system/Config/Routes.php',
                '/system/ThirdParty/',
            ],
        ],
    ];

    public function __construct()
    {
        $this->loadAutoloader();
    }

    private function loadAutoloader()
    {
        $paths = new Config\Paths();
        require rtrim($paths->systemDirectory, '\\/ ') . DIRECTORY_SEPARATOR . 'bootstrap.php';
    }

    /** * Load PHP files. */
    
Home | Imprint | This part of the site doesn't use cookies.