Exemplo n.º 1
0
 public function testReadOnlyStrictProperty()
 {
     $this->setExpectedException(UnexpectedValueException::class);
     $obj = new Prototype();
     $obj->a = Prototype::readOnly(1, true);
     $this->assertEquals(1, $obj->a);
     $obj->a = 2;
 }