Add rule for concatenation operator spacing

[MAILPOET-2090]
This commit is contained in:
Pavel Dohnal
2019-05-20 14:12:31 +02:00
committed by M. Shull
parent 12ff88ee21
commit 5d64ec168d
61 changed files with 273 additions and 267 deletions

View File

@@ -13,9 +13,9 @@ class Textarea extends Base {
$lines = (isset($block['params']['lines']) ? (int)$block['params']['lines'] : 1);
$html .= '<textarea class="mailpoet_textarea" rows="'.$lines.'" ';
$html .= '<textarea class="mailpoet_textarea" rows="' . $lines . '" ';
$html .= 'name="data['.static::getFieldName($block).']"';
$html .= 'name="data[' . static::getFieldName($block) . ']"';
$html .= static::renderInputPlaceholder($block);
@@ -23,7 +23,7 @@ class Textarea extends Base {
$html .= static::getInputModifiers($block);
$html .= '>'.static::getFieldValue($block).'</textarea>';
$html .= '>' . static::getFieldValue($block) . '</textarea>';
$html .= '</p>';