diff --git a/src/Umbraco.Core/Deploy/IValueConnector.cs b/src/Umbraco.Core/Deploy/IValueConnector.cs
index 81df59f1f1..7d9f43b5fe 100644
--- a/src/Umbraco.Core/Deploy/IValueConnector.cs
+++ b/src/Umbraco.Core/Deploy/IValueConnector.cs
@@ -29,8 +29,9 @@ namespace Umbraco.Core.Deploy
/// Gets the content property value corresponding to a deploy property value.
///
/// The deploy property value.
+ /// The value property type<
/// The current content property value.
/// The content property value.
- object FromArtifact(string value, object currentValue);
+ object FromArtifact(string value, PropertyType propertyType, object currentValue);
}
}