Exemplo n.º 1
0
 public function addAnnotation(Annotation $annotation)
 {
     if (!array_key_exists($annotation->getKey(), $this->annotations)) {
         $this->annotations[$annotation->getKey()] = array();
     }
     $this->annotations[$annotation->getKey()][] = $annotation;
     $annotation->apply($this);
 }