Completed
Push — master ( 631929...5231d5 )
by Alexandr
02:39
created
src/Config/Schema/SchemaConfig.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,6 +28,9 @@  discard block
 block discarded – undo
28 28
      */
29 29
     private $directiveList;
30 30
 
31
+    /**
32
+     * @param \Youshido\GraphQL\Schema\AbstractSchema $contextObject
33
+     */
31 34
     public function __construct(array $configData, $contextObject = null, $finalClass = false)
32 35
     {
33 36
         $this->typesList = new SchemaTypesList();
@@ -88,7 +91,7 @@  discard block
 block discarded – undo
88 91
     }
89 92
 
90 93
     /**
91
-     * @param $query AbstractObjectType
94
+     * @param ObjectType $query AbstractObjectType
92 95
      *
93 96
      * @return SchemaConfig
94 97
      */
Please login to merge, or discard this patch.
src/Parser/Ast/Directive.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@  discard block
 block discarded – undo
21 21
 
22 22
     /**
23 23
      * @param string         $name
24
-     * @param ValueInterface $value
25 24
      * @param Location       $location
26 25
      */
27 26
     public function __construct($name, array $arguments, Location $location)
@@ -33,7 +32,7 @@  discard block
 block discarded – undo
33 32
     }
34 33
 
35 34
     /**
36
-     * @return mixed
35
+     * @return string
37 36
      */
38 37
     public function getName()
39 38
     {
Please login to merge, or discard this patch.