Skip to content
Snippets Groups Projects

Issue #3511455: Call to a member function render() on string.

Merged Dhruv Mittal requested to merge issue/salesforce-3511455:3511455-call-to-a into 5.1.x
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -524,7 +524,7 @@ abstract class SalesforceMappingFormCrudBase extends SalesforceMappingFormBase {
$options[$info->id()] = $info->getLabel();
}
uasort($options, function ($a, $b) {
return strcmp($a->render(), $b->render());
return strcmp((string) $a, (string) $b);
});
return $options;
}
Loading