Skip to content
Snippets Groups Projects

Issue #3466522 by jwilson3: Support PHP 8.3

Merged James Wilson requested to merge issue/rivet-3466522:3466522-support-php-8.3 into 1.0.x
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -593,7 +593,7 @@ function _rivet_get_entity_cache_id() {
@@ -593,7 +593,7 @@ function _rivet_get_entity_cache_id() {
if ($param instanceof EntityInterface) {
if ($param instanceof EntityInterface) {
$entity_type = $param->getEntityTypeId();
$entity_type = $param->getEntityTypeId();
$entity_id = $param->id();
$entity_id = $param->id();
return "${entity_type}:${entity_id}";
return "{$entity_type}:{$entity_id}";
}
}
}
}
}
}
Loading