for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Bootstrap file for the autoloader test suite.
*
* @package automattic/jetpack-autoloader
*/
if ( ! function_exists( 'trailingslashit' ) ) {
* A drop-in for a WordPress core function.
* @param String $string string.
* @return String
function trailingslashit( $string ) {
return rtrim( $string, '/\\' ) . '/';
}
require_once __DIR__ . '/../../vendor/autoload.php';
require_once __DIR__ . '/../../src/functions.php';