BetterReflection\Reflection\ReflectionClass::getDefaultProperties PHP Method

getDefaultProperties() public method

    public function getDefaultProperties()
    {
        return array_map(function (ReflectionProperty $property) {
            return $property->getDefaultValue();
        }, array_filter($this->getProperties(), function (ReflectionProperty $property) {
            return $property->isDefault();
        }));
    }

Usage Example

 /**
  * {@inheritDoc}
  */
 public function getDefaultProperties()
 {
     return $this->betterReflectionClass->getDefaultProperties();
 }