Completed
Branch 3.x (c13855)
by Sam
02:41
created
Slim/App.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@  discard block
 block discarded – undo
14 14
 use Throwable;
15 15
 use Closure;
16 16
 use InvalidArgumentException;
17
-use Psr\Http\Message\RequestInterface;
18 17
 use Psr\Http\Message\ServerRequestInterface;
19 18
 use Psr\Http\Message\ResponseInterface;
20 19
 use Interop\Container\ContainerInterface;
@@ -26,7 +25,6 @@  discard block
 block discarded – undo
26 25
 use Slim\Http\Headers;
27 26
 use Slim\Http\Body;
28 27
 use Slim\Http\Request;
29
-use Slim\Interfaces\Http\EnvironmentInterface;
30 28
 use Slim\Interfaces\RouteGroupInterface;
31 29
 use Slim\Interfaces\RouteInterface;
32 30
 use Slim\Interfaces\RouterInterface;
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -466,7 +466,7 @@  discard block
 block discarded – undo
466 466
         $router = $this->container->get('router');
467 467
 
468 468
         // If router hasn't been dispatched or the URI changed then dispatch
469
-        if (null === $routeInfo || ($routeInfo['request'] !== [$request->getMethod(), (string) $request->getUri()])) {
469
+        if (null === $routeInfo || ($routeInfo['request'] !== [$request->getMethod(), (string)$request->getUri()])) {
470 470
             $request = $this->dispatchRouterAndPrepareRoute($request, $router);
471 471
             $routeInfo = $request->getAttribute('routeInfo');
472 472
         }
@@ -558,7 +558,7 @@  discard block
 block discarded – undo
558 558
             $request = $request->withAttribute('route', $route);
559 559
         }
560 560
 
561
-        $routeInfo['request'] = [$request->getMethod(), (string) $request->getUri()];
561
+        $routeInfo['request'] = [$request->getMethod(), (string)$request->getUri()];
562 562
 
563 563
         return $request->withAttribute('routeInfo', $routeInfo);
564 564
     }
@@ -587,7 +587,7 @@  discard block
 block discarded – undo
587 587
             }
588 588
             $size = $response->getBody()->getSize();
589 589
             if ($size !== null && !$response->hasHeader('Content-Length')) {
590
-                $response = $response->withHeader('Content-Length', (string) $size);
590
+                $response = $response->withHeader('Content-Length', (string)$size);
591 591
             }
592 592
         }
593 593
 
Please login to merge, or discard this patch.
Slim/Handlers/NotFound.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     /**
63 63
      * Return a response for application/json content not found
64 64
      *
65
-     * @return ResponseInterface
65
+     * @return string
66 66
      */
67 67
     protected function renderJsonNotFoundOutput()
68 68
     {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     /**
73 73
      * Return a response for xml content not found
74 74
      *
75
-     * @return ResponseInterface
75
+     * @return string
76 76
      */
77 77
     protected function renderXmlNotFoundOutput()
78 78
     {
Please login to merge, or discard this patch.
Slim/Http/Request.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -811,7 +811,7 @@  discard block
 block discarded – undo
811 811
      * These values MAY be prepared from $_FILES or the message body during
812 812
      * instantiation, or MAY be injected via withUploadedFiles().
813 813
      *
814
-     * @return array An array tree of UploadedFileInterface instances; an empty
814
+     * @return UploadedFileInterface[] An array tree of UploadedFileInterface instances; an empty
815 815
      *     array MUST be returned if no data is present.
816 816
      */
817 817
     public function getUploadedFiles()
@@ -1144,7 +1144,7 @@  discard block
 block discarded – undo
1144 1144
      * @param string $key
1145 1145
      * @param mixed $default
1146 1146
      *
1147
-     * @return mixed
1147
+     * @return null|string
1148 1148
      */
1149 1149
     public function getParsedBodyParam($key, $default = null)
1150 1150
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
 use Psr\Http\Message\StreamInterface;
18 18
 use Slim\Collection;
19 19
 use Slim\Exception\InvalidMethodException;
20
-use Slim\Exception\MethodNotAllowedException;
21 20
 use Slim\Interfaces\Http\HeadersInterface;
22 21
 
23 22
 /**
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -201,25 +201,25 @@  discard block
 block discarded – undo
201 201
             $this->headers->set('Host', $this->uri->getHost());
202 202
         }
203 203
 
204
-        $this->registerMediaTypeParser('application/json', function ($input) {
204
+        $this->registerMediaTypeParser('application/json', function($input) {
205 205
             return json_decode($input, true);
206 206
         });
207 207
 
208
-        $this->registerMediaTypeParser('application/xml', function ($input) {
208
+        $this->registerMediaTypeParser('application/xml', function($input) {
209 209
             $backup = libxml_disable_entity_loader(true);
210 210
             $result = simplexml_load_string($input);
211 211
             libxml_disable_entity_loader($backup);
212 212
             return $result;
213 213
         });
214 214
 
215
-        $this->registerMediaTypeParser('text/xml', function ($input) {
215
+        $this->registerMediaTypeParser('text/xml', function($input) {
216 216
             $backup = libxml_disable_entity_loader(true);
217 217
             $result = simplexml_load_string($input);
218 218
             libxml_disable_entity_loader($backup);
219 219
             return $result;
220 220
         });
221 221
 
222
-        $this->registerMediaTypeParser('application/x-www-form-urlencoded', function ($input) {
222
+        $this->registerMediaTypeParser('application/x-www-form-urlencoded', function($input) {
223 223
             parse_str($input, $data);
224 224
             return $data;
225 225
         });
@@ -1015,7 +1015,7 @@  discard block
 block discarded – undo
1015 1015
         // look for a media type with a structured syntax suffix (RFC 6839)
1016 1016
         $parts = explode('+', $mediaType);
1017 1017
         if (count($parts) >= 2) {
1018
-            $mediaType = 'application/' . $parts[count($parts)-1];
1018
+            $mediaType = 'application/' . $parts[count($parts) - 1];
1019 1019
         }
1020 1020
 
1021 1021
         if (isset($this->bodyParsers[$mediaType]) === true) {
Please login to merge, or discard this patch.
Slim/Route.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
     /**
82 82
      * Create new route
83 83
      *
84
-     * @param string|string[]   $methods The route HTTP methods
84
+     * @param string[]   $methods The route HTTP methods
85 85
      * @param string            $pattern The route pattern
86 86
      * @param callable          $callable The route callable
87 87
      * @param RouteGroup[]      $groups The parent route groups
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 use InvalidArgumentException;
14 14
 use Psr\Http\Message\ServerRequestInterface;
15 15
 use Psr\Http\Message\ResponseInterface;
16
-use Slim\Exception\SlimException;
17 16
 use Slim\Handlers\Strategies\RequestResponse;
18 17
 use Slim\Interfaces\InvocationStrategyInterface;
19 18
 use Slim\Interfaces\RouteInterface;
Please login to merge, or discard this patch.
Slim/Router.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@
 block discarded – undo
199 199
      *
200 200
      * @param  string[] $methods Array of HTTP methods
201 201
      * @param  string   $pattern The route pattern
202
-     * @param  callable $handler The route callable
202
+     * @param callable $callable
203 203
      *
204 204
      * @return \Slim\Interfaces\RouteInterface
205 205
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -222,7 +222,7 @@
 block discarded – undo
222 222
             return $this->dispatcher;
223 223
         }
224 224
 
225
-        $routeDefinitionCallback = function (RouteCollector $r) {
225
+        $routeDefinitionCallback = function(RouteCollector $r) {
226 226
             foreach ($this->getRoutes() as $route) {
227 227
                 $r->addRoute($route->getMethods(), $route->getPattern(), $route->getIdentifier());
228 228
             }
Please login to merge, or discard this patch.
example/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,12 +26,12 @@
 block discarded – undo
26 26
  * argument for `Slim::get`, `Slim::post`, `Slim::put`, `Slim::patch`, and `Slim::delete`
27 27
  * is an anonymous function.
28 28
  */
29
-$app->get('/', function ($request, $response, $args) {
29
+$app->get('/', function($request, $response, $args) {
30 30
     $response->write("Welcome to Slim!");
31 31
     return $response;
32 32
 });
33 33
 
34
-$app->get('/hello[/{name}]', function ($request, $response, $args) {
34
+$app->get('/hello[/{name}]', function($request, $response, $args) {
35 35
     $response->write("Hello, " . $args['name']);
36 36
     return $response;
37 37
 })->setArgument('name', 'World!');
Please login to merge, or discard this patch.
Slim/Container.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
          *
93 93
          * @return array|\ArrayAccess
94 94
          */
95
-        $this['settings'] = function () use ($userSettings, $defaultSettings) {
95
+        $this['settings'] = function() use ($userSettings, $defaultSettings) {
96 96
             return new Collection(array_merge($defaultSettings, $userSettings));
97 97
         };
98 98
 
Please login to merge, or discard this patch.
Slim/MiddlewareAwareTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
             $this->seedMiddlewareStack();
64 64
         }
65 65
         $next = $this->stack->top();
66
-        $this->stack[] = function (
66
+        $this->stack[] = function(
67 67
             ServerRequestInterface $request,
68 68
             ResponseInterface $response
69 69
         ) use (
Please login to merge, or discard this patch.
Slim/Http/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -211,7 +211,7 @@
 block discarded – undo
211 211
      */
212 212
     protected function filterStatus($status)
213 213
     {
214
-        if (!is_integer($status) || $status<100 || $status>599) {
214
+        if (!is_integer($status) || $status < 100 || $status > 599) {
215 215
             throw new InvalidArgumentException('Invalid HTTP status code');
216 216
         }
217 217
 
Please login to merge, or discard this patch.