Remove some redundant constructor overrides

This commit is contained in:
Dylan K. Taylor 2017-10-19 16:42:14 +01:00
parent 5a353012de
commit d99e9513b0
2 changed files with 0 additions and 8 deletions

View File

@ -27,10 +27,6 @@ class Purpur extends Quartz{
protected $id = self::PURPUR_BLOCK;
public function __construct(int $meta = 0){
$this->meta = $meta;
}
public function getName() : string{
static $names = [
self::NORMAL => "Purpur Block",

View File

@ -29,10 +29,6 @@ class WoodenSlab extends Slab{
protected $id = self::WOODEN_SLAB;
public function __construct(int $meta = 0){
$this->meta = $meta;
}
public function getDoubleSlabId() : int{
return self::DOUBLE_WOODEN_SLAB;
}