Completed
Push — renovate/cache-2.x ( 183693...8b6c29 )
by
unknown
10:48 queued 02:32
created

bootstrap.php ➔ map_deep()   A

Complexity

Conditions 5
Paths 4

Size

Total Lines 16

Duplication

Lines 16
Ratio 100 %

Importance

Changes 0
Metric Value
cc 5
nc 4
nop 2
dl 16
loc 16
rs 9.4222
c 0
b 0
f 0
1
<?php
2
/**
3
 * Bootstrap file for the autoloader test suite.
4
 *
5
 * @package automattic/jetpack-autoloader
6
 */
7
8
// Make sure its easy to reference the test data.
9
define( 'TEST_DATA_PATH', __DIR__ . '/data' );
10
11
// Load any of the test utilities.
12
require_once __DIR__ . '/lib/functions-wordpress.php';
13
14
// Load all of the classes for the autoloader.
15
// We include these files manually both in the autoloader and here to avoid having them show up in the manifests.
16
require_once __DIR__ . '/../../vendor/autoload.php';
17
require_once __DIR__ . '/../../src/functions.php';
18
require_once __DIR__ . '/../../src/class-autoloader-locator.php';
19
require_once __DIR__ . '/../../src/class-plugins-handler.php';
20
require_once __DIR__ . '/../../src/class-version-selector.php';
21
require_once __DIR__ . '/../../src/class-manifest-handler.php';
22
require_once __DIR__ . '/../../src/class-version-loader.php';
23
require_once __DIR__ . '/../../src/class-autoloader-handler.php';
24