Completed
Push — master ( 2fc4c0...354429 )
by Vladimir
02:57
created
src/allejo/stakx/Server/Controller.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
      *
207 207
      * @param string $url
208 208
      *
209
-     * @return mixed
209
+     * @return string
210 210
      */
211 211
     public static function normalizeUrl($url)
212 212
     {
@@ -217,9 +217,9 @@  discard block
 block discarded – undo
217 217
      * Find a ContentItem from a Dynamic PageView or null if it doesn't exist.
218 218
      *
219 219
      * @param DynamicPageView $pageView
220
-     * @param                 $permalink
220
+     * @param                 string $permalink
221 221
      *
222
-     * @return CollectableItem|ReadableDocument|TemplateReadyDocument|null
222
+     * @return CollectableItem|null
223 223
      */
224 224
     private static function getContentItem(DynamicPageView $pageView, $permalink)
225 225
     {
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
      * Find the ExpandedValue from a Repeater PageView or null if it doesn't exist.
241 241
      *
242 242
      * @param RepeaterPageView $pageView
243
-     * @param                  $permalink
243
+     * @param                  string $permalink
244 244
      *
245 245
      * @return ExpandedValue|null
246 246
      */
Please login to merge, or discard this patch.
Braces   +10 added lines, -5 removed lines patch added patch discarded remove patch
@@ -44,7 +44,8 @@  discard block
 block discarded – undo
44 44
      */
45 45
     private function staticPageViewAction(StaticPageView $pageView, Compiler $compiler)
46 46
     {
47
-        return function () use ($pageView, $compiler) {
47
+        return function () use ($pageView, $compiler)
48
+        {
48 49
             Service::setOption('currentTemplate', $pageView->getAbsoluteFilePath());
49 50
 
50 51
             $compiler->getTemplateBridge()->clearTemplateCache();
@@ -74,7 +75,8 @@  discard block
 block discarded – undo
74 75
      */
75 76
     private function dynamicPageViewAction(DynamicPageView $pageView, Compiler $compiler)
76 77
     {
77
-        return function (ServerRequestInterface $request) use ($pageView, $compiler) {
78
+        return function (ServerRequestInterface $request) use ($pageView, $compiler)
79
+        {
78 80
             Service::setOption('currentTemplate', $pageView->getAbsoluteFilePath());
79 81
 
80 82
             $compiler->getTemplateBridge()->clearTemplateCache();
@@ -110,7 +112,8 @@  discard block
 block discarded – undo
110 112
      */
111 113
     private function repeaterPageViewAction(RepeaterPageView $pageView, Compiler $compiler)
112 114
     {
113
-        return function (ServerRequestInterface $request) use ($pageView, $compiler) {
115
+        return function (ServerRequestInterface $request) use ($pageView, $compiler)
116
+        {
114 117
             Service::setOption('currentTemplate', $pageView->getAbsoluteFilePath());
115 118
 
116 119
             $compiler->getTemplateBridge()->clearTemplateCache();
@@ -153,7 +156,8 @@  discard block
 block discarded – undo
153 156
                 return $this->repeaterPageViewAction($pageView, $compiler);
154 157
 
155 158
             default:
156
-                return function () {
159
+                return function ()
160
+                {
157 161
                     $errMsg = 'This URL type has not yet been implemented.';
158 162
 
159 163
                     return new Response(501, ['Content-Type' => 'text/plain'], $errMsg);
@@ -194,7 +198,8 @@  discard block
 block discarded – undo
194 198
     {
195 199
         self::$baseUrl = $router->getBaseUrl();
196 200
 
197
-        return \FastRoute\simpleDispatcher(function (RouteCollector $r) use ($router, $compiler) {
201
+        return \FastRoute\simpleDispatcher(function (RouteCollector $r) use ($router, $compiler)
202
+        {
198 203
             $dispatcher = new Controller();
199 204
 
200 205
             foreach ($router->getRouteMapping() as $route => $pageView)
Please login to merge, or discard this patch.
src/allejo/stakx/Server/WebServer.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,8 @@
 block discarded – undo
58 58
     {
59 59
         $dispatcher = Controller::create($router, $compiler);
60 60
 
61
-        return new Server(function (ServerRequestInterface $request) use ($router, $dispatcher, $compiler) {
61
+        return new Server(function (ServerRequestInterface $request) use ($router, $dispatcher, $compiler)
62
+        {
62 63
             $httpMethod = $request->getMethod();
63 64
             $urlPath = Controller::normalizeUrl($request->getUri()->getPath());
64 65
 
Please login to merge, or discard this patch.