这是我的片段:
# Get repository of a table:
snippet repo
$$2 = $this->getRepository('${1:Bundle}:${2:TableName}')
${3}
当我使用它时,它可能会产生以下内容:
$Person = $this->getRepository('MyBundle:Person')
$Address = $this->getRepository('MyBundle:Address')
我希望第一个是小写的,总是小写的,并给我类似的东西:
$person = $this->getRepository('MyBundle:Person')
$address = $this->getRepository('MyBundle:Address')
...
. 有没有办法用 snipmate 做到这一点?