From cc8909f92bce4aa6bb9d6239501955ec0ed96fa3 Mon Sep 17 00:00:00 2001
From: Perreal Guillaume <guillaume.perreal@irstea.fr>
Date: Tue, 16 Apr 2019 10:36:37 +0200
Subject: [PATCH] =?UTF-8?q?Correction=20d'un=20appel=20=C3=A0=20une=20m?=
=?UTF-8?q?=C3=A9thode=20deprecated.?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/php/Metadata/PropertyMetadataFactory.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/php/Metadata/PropertyMetadataFactory.php b/src/php/Metadata/PropertyMetadataFactory.php
index a184aef..596b4e9 100644
--- a/src/php/Metadata/PropertyMetadataFactory.php
+++ b/src/php/Metadata/PropertyMetadataFactory.php
@@ -196,7 +196,7 @@ class PropertyMetadataFactory
$propertyMeta = $this->propertyMetadataFactory->create($class->getFullName(), $propertyName);
- if (!$propertyMeta->getType() || $propertyMeta->isChildInherited()) {
+ if (!$propertyMeta->getType() || $propertyMeta->hasChildInherited()) {
continue;
}
--
GitLab