git diff-tree --check $(git hash-object -t tree /dev/null) HEAD

This commit is contained in:
Dylan K. Taylor
2018-03-11 10:29:59 +00:00
parent 40b995a435
commit cd35bd6872
30 changed files with 65 additions and 90 deletions

View File

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