convert more constant interfaces to final classes, close #2885

This commit is contained in:
Dylan K. Taylor
2019-08-24 15:39:23 +01:00
parent ef8eba43d7
commit 75a2d79671
9 changed files with 45 additions and 9 deletions

View File

@ -23,7 +23,11 @@ declare(strict_types=1);
namespace pocketmine\item;
interface ItemIds{
final class ItemIds{
private function __construct(){
//NOOP
}
public const LIT_BLAST_FURNACE = -214;
public const COMPOSTER = -213;