missed one

This commit is contained in:
Dylan K. Taylor 2019-02-27 10:37:13 +00:00
parent 2d8480d801
commit 31336a0d09

View File

@ -33,7 +33,7 @@ abstract class ContainerInventory extends BaseInventory{
/** @var Vector3 */
protected $holder;
public function __construct(Vector3 $holder, array $items = [], ?int $size = null, ?string $title = null){
public function __construct(Vector3 $holder, array $items = [], ?int $size = null){
$this->holder = $holder;
parent::__construct($items, $size);
}