Completed
Push — master ( e1dfcf...9ca5db )
by Timo
05:54
created
src/Models/ColumnFormatters/LinkColumn.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -87,8 +87,8 @@
 block discarded – undo
87 87
     private function _renderLink(string $name, string $url) : string
88 88
     {
89 89
         return '<a href="' . $url . '"' .
90
-               ($this->_openNew ? ' target="_blank" rel="noopener"' : '') .
91
-               (!empty($this->_classes) ? (' class="' . $this->_classes . '"') : '') .
92
-               '>' . $name . '</a>';
90
+                ($this->_openNew ? ' target="_blank" rel="noopener"' : '') .
91
+                (!empty($this->_classes) ? (' class="' . $this->_classes . '"') : '') .
92
+                '>' . $name . '</a>';
93 93
     }
94 94
 }
95 95
\ No newline at end of file
Please login to merge, or discard this patch.