@@ -30,14 +30,14 @@ |
||
| 30 | 30 | */ |
| 31 | 31 | public function getRowId(ResultRow $row) { |
| 32 | 32 | $entity = $row->_entity; |
| 33 | - return $entity->getEntityTypeId() . ':' . $entity->id(); |
|
| 33 | + return $entity->getEntityTypeId().':'.$entity->id(); |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | /** |
| 37 | 37 | * {@inheritdoc} |
| 38 | 38 | */ |
| 39 | 39 | public function render(ResultRow $values) { |
| 40 | - return ViewsRenderPipelineMarkup::create('<!--form-item-' . $this->options['id'] . '--' . $this->getRowId($values) . '-->'); |
|
| 40 | + return ViewsRenderPipelineMarkup::create('<!--form-item-'.$this->options['id'].'--'.$this->getRowId($values).'-->'); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | /** |