%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /www/varak.net/nextcloud.varak.net/apps/photos/vendor/hexogen/kdtree/src/
Upload File :
Create Path :
Current File : //www/varak.net/nextcloud.varak.net/apps/photos/vendor/hexogen/kdtree/src/Item.php

<?php


namespace Hexogen\KDTree;

use Hexogen\KDTree\Interfaces\ItemInterface;

class Item extends Point implements ItemInterface
{
    private $id;

    /**
     * Item constructor.
     * @param int $id
     * @param array $dValues
     */
    public function __construct(int $id, array $dValues)
    {
        parent::__construct($dValues);
        $this->id = $id;
    }

    /**
     * get item id
     *
     * @api
     * @return int item id
     */
    public function getId() : int
    {
        return $this->id;
    }
}

Zerion Mini Shell 1.0