phpDocumentor\Descriptor\TraitDescriptor::getInheritedProperties PHP Method

getInheritedProperties() public method

{@inheritDoc}
    public function getInheritedProperties()
    {
        return new Collection();
    }

Usage Example

 /**
  * @covers phpDocumentor\Descriptor\TraitDescriptor::getInheritedProperties
  */
 public function testGetInheritedProperties()
 {
     $this->assertInstanceOf('phpDocumentor\\Descriptor\\Collection', $this->fixture->getInheritedProperties());
     $collection = $this->fixture->getInheritedProperties();
     $this->assertEquals(0, $collection->count());
 }