@@ -358,7 +358,7 @@ |
||
358 | 358 | { |
359 | 359 | if ($uType === "html5" || $uType === "xhtml5") { |
360 | 360 | return "<!DOCTYPE html>" . PHP_EOL; |
361 | - } elseif ($uType === "xhtml11" || $uType === "xhtml1.1") { |
|
361 | + } elseif ($uType === "xhtml11" || $uType === "xhtml1.1") { |
|
362 | 362 | return |
363 | 363 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\" " . |
364 | 364 | "\"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">" . |
@@ -83,7 +83,7 @@ |
||
83 | 83 | { |
84 | 84 | if (is_string($uCallback) && ($tPos = strrpos($uCallback, "@")) !== false) { |
85 | 85 | $tClassName = substr($uCallback, 0, $tPos); |
86 | - $uCallback = [new $tClassName (), substr($uCallback, $tPos + 1)]; |
|
86 | + $uCallback = [new $tClassName(), substr($uCallback, $tPos + 1)]; |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | return $uCallback; |
@@ -631,7 +631,7 @@ discard block |
||
631 | 631 | public static function squoteArray($uArray, $uCover = false) |
632 | 632 | { |
633 | 633 | $tArray = []; |
634 | - foreach ((array)$uArray as $tKey => $tValue) { |
|
634 | + foreach ((array) $uArray as $tKey => $tValue) { |
|
635 | 635 | if ($uCover) { |
636 | 636 | $tArray[$tKey] = "'" . |
637 | 637 | str_replace( |
@@ -664,7 +664,7 @@ discard block |
||
664 | 664 | public static function dquoteArray($uArray, $uCover = false) |
665 | 665 | { |
666 | 666 | $tArray = []; |
667 | - foreach ((array)$uArray as $tKey => $tValue) { |
|
667 | + foreach ((array) $uArray as $tKey => $tValue) { |
|
668 | 668 | if ($uCover) { |
669 | 669 | $tArray[$tKey] = "\"" . |
670 | 670 | str_replace( |