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