N°5608 - Add comments to main autoloader

This commit is contained in:
Molkobain
2022-10-13 19:55:44 +02:00
parent a3e309acb5
commit d9539f9d01

View File

@@ -1,5 +1,9 @@
<?php
include('vendor/autoload.php');
include('ItopTestCase.php');
include('ItopDataTestCase.php');
// Main autoload, this is the one to use in the PHPUnit configuration
// It is customized to include both
// - Vendors
require_once 'vendor/autoload.php';
// - Custom test case PHP classes
require_once 'ItopTestCase.php';
require_once 'ItopDataTestCase.php';