Completed
Pull Request — master (#75)
by Vladimir
02:24
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/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.
src/allejo/stakx/Server/RouteDispatcher.php 1 patch
Braces   +12 added lines, -6 removed lines patch added patch discarded remove patch
@@ -38,10 +38,12 @@  discard block
 block discarded – undo
38 38
      */
39 39
     private function staticPageViewController(StaticPageView $pageView, Compiler $compiler)
40 40
     {
41
-        return function () use ($pageView, $compiler) {
41
+        return function () use ($pageView, $compiler)
42
+        {
42 43
             Service::setOption('currentTemplate', $pageView->getAbsoluteFilePath());
43 44
 
44
-            if ($this->hasBeenTouched($pageView)) {
45
+            if ($this->hasBeenTouched($pageView))
46
+            {
45 47
                 $pageView->readContent();
46 48
             }
47 49
 
@@ -65,7 +67,8 @@  discard block
 block discarded – undo
65 67
      */
66 68
     private function dynamicPageViewController(DynamicPageView $pageView, Compiler $compiler)
67 69
     {
68
-        return function (ServerRequestInterface $request) use ($pageView, $compiler) {
70
+        return function (ServerRequestInterface $request) use ($pageView, $compiler)
71
+        {
69 72
             Service::setOption('currentTemplate', $pageView->getAbsoluteFilePath());
70 73
 
71 74
             $contentItem = self::getContentItem($pageView, self::normalizeUrl($request->getUri()->getPath()));
@@ -98,7 +101,8 @@  discard block
 block discarded – undo
98 101
      */
99 102
     private function repeaterPageViewController(RepeaterPageView $pageView, Compiler $compiler)
100 103
     {
101
-        return function (ServerRequestInterface $request) use ($pageView, $compiler) {
104
+        return function (ServerRequestInterface $request) use ($pageView, $compiler)
105
+        {
102 106
             $permalinks = $pageView->getRepeaterPermalinks();
103 107
             $url = self::normalizeUrl($request->getUri()->getPath());
104 108
 
@@ -138,7 +142,8 @@  discard block
 block discarded – undo
138 142
                 return $this->repeaterPageViewController($pageView, $compiler);
139 143
 
140 144
             default:
141
-                return function () {
145
+                return function ()
146
+                {
142 147
                     $errMsg = 'This URL type has not yet been implemented.';
143 148
 
144 149
                     return new Response(501, ['Content-Type' => 'text/plain'], $errMsg);
@@ -178,7 +183,8 @@  discard block
 block discarded – undo
178 183
     {
179 184
         self::$baseUrl = $router->getBaseUrl();
180 185
 
181
-        return \FastRoute\simpleDispatcher(function (RouteCollector $r) use ($router, $compiler) {
186
+        return \FastRoute\simpleDispatcher(function (RouteCollector $r) use ($router, $compiler)
187
+        {
182 188
             $dispatcher = new RouteDispatcher();
183 189
 
184 190
             foreach ($router->getRouteMapping() as $route => $pageView)
Please login to merge, or discard this patch.