Пример #1
0
 /**
  * Same as getClassProperties, but the fields are in LowerCaseUnderscored
  *
  * @param $className
  *
  * @return array
  */
 protected function getClassPropertiesInLowerCaseUnderscored($className)
 {
     return array_map(function ($value) {
         return GeneralUtility::camelCaseToLowerCaseUnderscored($value);
     }, ReflectionUtility::getDeclaringProperties($className));
 }