Add space between for and ‘(‘
[MAILPOET-1791]
This commit is contained in:
@@ -11,7 +11,7 @@ class DOM {
|
||||
*/
|
||||
static function splitOn(DomNode $bound, DomNode $cut_element) {
|
||||
$ignore_text_and_comment_nodes = false;
|
||||
for($parent = $cut_element->parent; $bound != $parent; $parent = $grandparent) {
|
||||
for ($parent = $cut_element->parent; $bound != $parent; $parent = $grandparent) {
|
||||
// Clone parent node without children, but with attributes
|
||||
$parent->after($parent->toString());
|
||||
$right = $parent->getNextSibling($ignore_text_and_comment_nodes);
|
||||
|
@@ -440,7 +440,7 @@ class XLSXWriter
|
||||
public static function xlsCell($row_number, $column_number)
|
||||
{
|
||||
$n = $column_number;
|
||||
for($r = ""; $n >= 0; $n = intval($n / 26) - 1) {
|
||||
for ($r = ""; $n >= 0; $n = intval($n / 26) - 1) {
|
||||
$r = chr($n%26 + 0x41) . $r;
|
||||
}
|
||||
return $r . ($row_number+1);
|
||||
@@ -606,4 +606,4 @@ class XLSXWriter_BuffererWriter
|
||||
}
|
||||
return preg_match("//u", $string) ? true : false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user