Pimcore\Model\Document\Listing::key PHP Метод

key() публичный Метод

Returns the current listing row key.
public key ( ) : mixed
Результат mixed
    public function key()
    {
        $this->getDocuments();
        $var = key($this->documents);
        return $var;
    }