bootstrap.php 574 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Setup our unit testing functionality
  4. *
  5. * @package mPDF
  6. * @author Blue Liquid Designs <admin@blueliquiddesigns.com.au>
  7. * @copyright 2015 Blue Liquid Designs
  8. * @license GPLv2
  9. * @since 6.1.0
  10. */
  11. /* Load the autoloader */
  12. require_once('vendor/autoload.php');
  13. /* Create a new instance of the mPDF class */
  14. /* We do this here to force the autoloader to include the actual file and its constants */
  15. /* It means tests will have access to all of mPDF's constants without first creating a new instance (and everything is loaded) */
  16. new mPDF();