Projekt

Obecné

Profil

Stáhnout (263 Bajtů) Statistiky
| Větev: | Revize:
1
<?php
2

    
3
namespace App\Document;
4

    
5
use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;
6

    
7
/**
8
 * @MongoDB\Document
9
 */
10
class Test {
11
    /**
12
     * @MongoDB\Id
13
     */
14
    protected $id;
15

    
16
    /**
17
     * @MongoDB\Field(type="string")
18
     */
19
    protected $name;
20
}
(2-2/2)