- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap.php
More file actions
20 lines (16 loc) · 569 Bytes
/
bootstrap.php
File metadata and controls
20 lines (16 loc) · 569 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
namespace Mpdf;
/**
* Setup our unit testing functionality
*
* @package mPDF
* @author Blue Liquid Designs <admin@blueliquiddesigns.com.au>
* @copyright 2015 Blue Liquid Designs
* @license GPLv2
* @since GPL-2.0
*/
require_once __DIR__ . '/../vendor/autoload.php';
// Create a new instance of the mPDF class
// We do this here to force the autoloader to include the actual file and its constants
// It means tests will have access to all of mPDF's constants without first creating a new instance (and everything is loaded)
new Mpdf();