Completed
Pull Request — master (#75)
by Vladimir
02:18
created
src/allejo/stakx/Document/DataItem.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -170,7 +170,8 @@
 block discarded – undo
170 170
             return call_user_func_array([$this, $fxnCall], []);
171 171
         }
172 172
 
173
-        if (isset($this->data[$offset])) {
173
+        if (isset($this->data[$offset]))
174
+        {
174 175
             return $this->data[$offset];
175 176
         }
176 177
 
Please login to merge, or discard this patch.
src/allejo/stakx/Server/RouteDispatcher.php 1 patch
Braces   +10 added lines, -5 removed lines patch added patch discarded remove patch
@@ -37,8 +37,10 @@  discard block
 block discarded – undo
37 37
      */
38 38
     private function staticPageViewController(StaticPageView $pageView, Compiler $compiler)
39 39
     {
40
-        return function () use ($pageView, $compiler) {
41
-            if ($this->hasBeenTouched($pageView)) {
40
+        return function () use ($pageView, $compiler)
41
+        {
42
+            if ($this->hasBeenTouched($pageView))
43
+            {
42 44
                 $pageView->readContent();
43 45
             }
44 46
 
@@ -62,7 +64,8 @@  discard block
 block discarded – undo
62 64
      */
63 65
     private function dynamicPageViewController(DynamicPageView $pageView, Compiler $compiler)
64 66
     {
65
-        return function (ServerRequestInterface $request) use ($pageView, $compiler) {
67
+        return function (ServerRequestInterface $request) use ($pageView, $compiler)
68
+        {
66 69
             $contentItem = self::getContentItem($pageView, self::normalizeUrl($request->getUri()->getPath()));
67 70
 
68 71
             if ($contentItem === null)
@@ -102,7 +105,8 @@  discard block
 block discarded – undo
102 105
                 return $this->dynamicPageViewController($pageView, $compiler);
103 106
 
104 107
             default:
105
-                return function () {
108
+                return function ()
109
+                {
106 110
                     $errMsg = 'This URL type has not yet been implemented.';
107 111
 
108 112
                     return new Response(501, ['Content-Type' => 'text/plain'], $errMsg);
@@ -142,7 +146,8 @@  discard block
 block discarded – undo
142 146
     {
143 147
         self::$baseUrl = $router->getBaseUrl();
144 148
 
145
-        return \FastRoute\simpleDispatcher(function (RouteCollector $r) use ($router, $compiler) {
149
+        return \FastRoute\simpleDispatcher(function (RouteCollector $r) use ($router, $compiler)
150
+        {
146 151
             $dispatcher = new RouteDispatcher();
147 152
 
148 153
             foreach ($router->getRouteMapping() as $route => $pageView)
Please login to merge, or discard this patch.
src/allejo/stakx/Server/DevServer.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,8 @@
 block discarded – undo
43 43
     {
44 44
         $dispatcher = RouteDispatcher::create($router, $compiler);
45 45
 
46
-        return new Server(function (ServerRequestInterface $request) use ($router, $dispatcher) {
46
+        return new Server(function (ServerRequestInterface $request) use ($router, $dispatcher)
47
+        {
47 48
             $httpMethod = $request->getMethod();
48 49
             $urlPath = RouteDispatcher::normalizeUrl($request->getUri()->getPath());
49 50
 
Please login to merge, or discard this patch.