diff --git a/core/modules/comment/src/CommentStorage.php b/core/modules/comment/src/CommentStorage.php index 4182bb8..40eec16 100644 --- a/core/modules/comment/src/CommentStorage.php +++ b/core/modules/comment/src/CommentStorage.php @@ -61,7 +61,7 @@ public static function createInstance(ContainerInterface $container, EntityTypeI /** * {@inheritdoc} - */ + * protected function buildQuery($ids, $revision_id = FALSE) { $query = parent::buildQuery($ids, $revision_id); // Specify additional fields from the user table. @@ -69,18 +69,18 @@ protected function buildQuery($ids, $revision_id = FALSE) { // @todo: Move to a computed 'name' field instead. //$query->addField('u', 'name', 'registered_name'); return $query; - } + }*/ /** * {@inheritdoc} - */ + * protected function mapFromStorageRecords(array $records) { // Prepare standard comment fields. foreach ($records as $record) { $record->name = $record->uid ? $record->registered_name : $record->name; } return parent::mapFromStorageRecords($records); - } + }*/ /** * {@inheritdoc}