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