Esempio n. 1
0
 public function testStatic()
 {
     $property = new Property('protected', 'visibilities', array('public', 'protected'));
     $this->assertFalse($property->isStatic());
     $property->setStatic(true);
     $this->assertTrue($property->isStatic());
 }