Test Failed
Pull Request — dev (#1)
by Paweł
12:17
created
src/View/MagicView.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     {
61 61
         $this->registerTrigger(
62 62
             Event::BeforeRun,
63
-            function (MagicView $view) {
63
+            function(MagicView $view) {
64 64
                 $view->content .= '<!DOCTYPE html><html lang="' . $view->loadLanguage() . '">';
65 65
                 $view->content .= '<head><title>' . $view->getTitle() . '</title><meta charset="' . $view->getCharset() . '">';
66 66
                 foreach ($view->getHeadTags() as $tag) {
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         );
79 79
         $this->registerTrigger(
80 80
             Event::AfterRun,
81
-            function (MagicView $view) {
81
+            function(MagicView $view) {
82 82
                 foreach ($view->getJsFiles() as $js) {
83 83
                     $view->content .= $js . PHP_EOL;
84 84
                 }
Please login to merge, or discard this patch.