diff --git a/core/lib/Drupal/Core/Entity/Plugin/EntityReferenceSelection/DefaultSelection.php b/core/lib/Drupal/Core/Entity/Plugin/EntityReferenceSelection/DefaultSelection.php index 6797fadaf6..799bbd4827 100644 --- a/core/lib/Drupal/Core/Entity/Plugin/EntityReferenceSelection/DefaultSelection.php +++ b/core/lib/Drupal/Core/Entity/Plugin/EntityReferenceSelection/DefaultSelection.php @@ -39,6 +39,10 @@ class DefaultSelection extends SelectionPluginBase implements ContainerFactoryPluginInterface, SelectionWithAutocreateInterface { use SelectionTrait { + // PHP 5.5.9 gets confused between SelectionPluginBase::__construct() and + // SelectionTrait::__construct() that's why we are renaming the + // SelectionTrait::__construct() to avoid the confusion. + // @todo Remove this in https://www.drupal.org/node/2670966. SelectionTrait::__construct as private selectionTraitConstruct; }