<?php
namespace Acme\HelloWorld\Model;
use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;
/**
* @MongoDB\Document
*/
class KindWord {
/**
* @MongoDB\Id(strategy="NONE")
* @var string
*/
private $word;
public function getWord() {
return $this->word;
}
public function setWord($word) {
$this->word = $word;
}
}
Run Code Online (Sandbox Code Playgroud)
请确保$word在致电前设置persist().