1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php /** * Class Aliases for graceful Backwards compatibility. * * This file is autoloaded via composer.json and maps the old namespaces to deprecation handlers. */
declare(strict_types=1);
use Automattic\WooCommerce\Admin\Features\Navigation\RemovedDeprecated;
class_alias( RemovedDeprecated::class, \Automattic\WooCommerce\Admin\Features\Navigation\Screen::class ); class_alias( RemovedDeprecated::class, \Automattic\WooCommerce\Admin\Features\Navigation\Menu::class ); class_alias( RemovedDeprecated::class, \Automattic\WooCommerce\Admin\Features\Navigation\CoreMenu::class );
|