Completed
Branch master (a6574e)
by Eser
05:40
created
src/Helpers/Html.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -358,7 +358,7 @@
 block discarded – undo
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\">" .
Please login to merge, or discard this patch.
src/Helpers/Runtime.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Helpers/String.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -631,7 +631,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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(
Please login to merge, or discard this patch.