autoload.php 423 B

1234567891011121314
  1. <?php
  2. /**
  3. * Includes the Autoloader class from the specified directory.
  4. *
  5. * This script includes the Autoloader.php file located in the "src" directory
  6. * relative to the current directory. This is necessary for utilizing the
  7. * Autoloader functionality in the application.
  8. *
  9. * @package ePHPic\Autload
  10. * @file Autoload.php
  11. */
  12. include __DIR__ . DIRECTORY_SEPARATOR . "src" . DIRECTORY_SEPARATOR . "Autoloader.php";