Mark some new things as internal

This commit is contained in:
Dylan K. Taylor
2023-08-25 14:02:49 +01:00
parent 4a0a538278
commit 9fdb6ba5aa
3 changed files with 20 additions and 0 deletions

View File

@ -23,6 +23,10 @@ declare(strict_types=1);
namespace pocketmine;
/**
* @internal
* Constants for all properties available in server.properties.
*/
final class ServerProperties{
public const AUTO_SAVE = "auto-save";

View File

@ -23,6 +23,12 @@ declare(strict_types=1);
namespace pocketmine;
/**
* @internal
* Constants for all properties available in pocketmine.yml.
* This is generated by build/generate-pocketmine-yml-property-consts.php.
* Do not edit this file manually.
*/
final class YmlServerProperties{
public const ALIASES = 'aliases';
public const ANONYMOUS_STATISTICS = 'anonymous-statistics';