Beispiel #1
0
 /**
  * @test
  * @expectedException \Apha\Annotations\ReadOnlyException
  */
 public function setEventTypeIsWriteOnce()
 {
     $annotation = new EventHandler();
     $annotation->setEventType('bar');
     $annotation->setEventType('baz');
 }