/
var
/
www
/
html
/
restaurants
/
vendor
/
doctrine
/
mongodb-odm
/
lib
/
Doctrine
/
ODM
/
MongoDB
/
Mapping
/
Annotations
/
Upload File
HOME
<?php declare(strict_types=1); namespace Doctrine\ODM\MongoDB\Mapping\Annotations; /** * Special field mapping to map document identifiers * * @Annotation */ final class Id extends AbstractField { /** @var bool */ public $id = true; /** @var string|null */ public $type; /** @var string */ public $strategy = 'auto'; }