File "aliases.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/common/src/functions/aliases.php
File size: 419 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

/**
 * Registers the library aliases redirecting calls to the `tad_DI52_`, non-namespaced, class format to the namespaced
 * classes.
 */

$aliases = [
	[ 'TEC\Common\lucatume\DI52\Container', 'tad_DI52_Container' ],
	[ 'TEC\Common\lucatume\DI52\ServiceProvider', 'tad_DI52_ServiceProvider' ]
];

foreach ( $aliases as [$class, $alias] ) {
	if ( ! class_exists( $alias ) ) {
		class_alias( $class, $alias );
	}
}