Completed
Push — 8.x-1.x ( b1a253...362da1 )
by Janez
03:13
created
src/Plugin/views/field/SelectForm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,14 +30,14 @@
 block discarded – undo
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
   /**
Please login to merge, or discard this patch.