/**
  * @inheritDoc
  */
 public function shouldSkipProperty(PropertyMetadata $property, Context $context)
 {
     if ($property->reflection && $property->reflection->getDeclaringClass()->isSubclassOf('Gravity\\CmsBundle\\Entity\\FieldableEntity')) {
         return false;
     }
     return $this->otherStrategy->shouldSkipProperty($property, $context);
 }