pocketmine\block\Wood::getName PHP Method

getName() public method

public getName ( ) : string
return string
    public function getName() : string
    {
        static $names = [self::OAK => "Oak Wood", self::SPRUCE => "Spruce Wood", self::BIRCH => "Birch Wood", self::JUNGLE => "Jungle Wood"];
        return $names[$this->meta & 0x3];
    }