Completed
Pull Request — master (#97)
by Michal
01:38
created
src/Handlers/OpenApiHandler.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -294,6 +294,9 @@  discard block
 block discarded – undo
294 294
         return rtrim(str_replace($baseUrl, '', $basePath), '/');
295 295
     }
296 296
 
297
+    /**
298
+     * @param string $path2
299
+     */
297 300
     private function getLongestCommonSubstring($path1, $path2)
298 301
     {
299 302
         if ($path1 === null) {
@@ -436,6 +439,9 @@  discard block
 block discarded – undo
436 439
         return null;
437 440
     }
438 441
 
442
+    /**
443
+     * @param string $type
444
+     */
439 445
     private function createIn($type)
440 446
     {
441 447
         if ($type == InputParam::TYPE_GET) {
Please login to merge, or discard this patch.
src/Authorization/BearerTokenAuthorization.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 
10 10
 class BearerTokenAuthorization extends TokenAuthorization
11 11
 {
12
-   /**
12
+    /**
13 13
      * BearerTokenAuthorization constructor.
14 14
      *
15 15
      * @param BearerTokenRepositoryInterface $tokenRepository
Please login to merge, or discard this patch.