Completed
Push — master ( e68bfe...064912 )
by Joel
08:18
created
src/Generator/GeneratorFactory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
 
19 19
 class GeneratorFactory
20 20
 {
21
+    /**
22
+     * @param \Symfony\Component\Serializer\Serializer $serializer
23
+     */
21 24
     public static function build($serializer)
22 25
     {
23 26
         if (class_exists('PhpParser\ParserFactory')) {
Please login to merge, or discard this patch.
src/Generator/OutputGeneratorTrait.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
      * @param         $status
24 24
      * @param         $schema
25 25
      * @param Context $context
26
+     * @param string $reference
26 27
      *
27 28
      * @return [string, null|Stmt\If_]
28 29
      */
Please login to merge, or discard this patch.
src/Operation/Operation.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -34,6 +34,9 @@
 block discarded – undo
34 34
      */
35 35
     private $reference;
36 36
 
37
+    /**
38
+     * @param string $reference
39
+     */
37 40
     public function __construct(OpenApiOperation $operation, $path, $method, $reference, $basePath = "", $host = 'localhost')
38 41
     {
39 42
         $this->operation = $operation;
Please login to merge, or discard this patch.
src/Operation/OperationManager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@
 block discarded – undo
8 8
 
9 9
 class OperationManager
10 10
 {
11
+    /**
12
+     * @param string $reference
13
+     */
11 14
     public function buildOperationCollection(OpenApi $openApi, $reference)
12 15
     {
13 16
         $operationCollection = new OperationCollection();
Please login to merge, or discard this patch.
src/Guesser/OpenApiSchema/OpenApiGuesser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
     /**
73 73
      * Discover classes in operation
74 74
      *
75
-     * @param $name
75
+     * @param string $name
76 76
      * @param Operation $operation
77 77
      * @param string $reference
78 78
      * @param Registry $registry
Please login to merge, or discard this patch.