Example #1
0
 /**
  * @test
  * @expectedException \Apha\Annotations\ReadOnlyException
  */
 public function setCommandTypeIsWriteOnce()
 {
     $annotation = new CommandHandler();
     $annotation->setCommandType('bar');
     $annotation->setCommandType('baz');
 }