Backward support for MyAAC\Items class

This commit is contained in:
slawkens
2026-03-08 21:08:29 +01:00
parent 39614a22c4
commit 2c18f9c767

14
system/src/Items.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
/**
* @deprecated
* This class is deprecated and will be removed in future versions. Please use the appropriate MyAAC\Server\Items class instead.
*/
namespace MyAAC;
class Items extends Server\Items
{
public static function load(): bool {
parent::init();
return true;
}
}