Completed
Push — master ( 14d264...b8b70e )
by Portey
05:01
created
src/Validator/ResolveValidator/ResolveValidator.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Date: 01.12.15
4
- *
5
- * @author Portey Vasil <[email protected]>
6
- */
3
+     * Date: 01.12.15
4
+     *
5
+     * @author Portey Vasil <[email protected]>
6
+     */
7 7
 
8 8
 namespace Youshido\GraphQL\Parser\Value;
9 9
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     public function validateArguments($queryType, $query, $request)
27 27
     {
28
-        $requiredArguments = array_filter($queryType->getConfig()->getArguments(), function (Field $argument) {
28
+        $requiredArguments = array_filter($queryType->getConfig()->getArguments(), function(Field $argument) {
29 29
             return $argument->getConfig()->isRequired();
30 30
         });
31 31
 
Please login to merge, or discard this patch.
src/Processor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@
 block discarded – undo
183 183
     /**
184 184
      * @param $objectType InputObjectType|ObjectType
185 185
      * @param $query Mutation|Query
186
-     * @return null
186
+     * @return boolean
187 187
      */
188 188
     private function checkFieldExist($objectType, $query)
189 189
     {
Please login to merge, or discard this patch.
src/Type/Object/AbstractInputObjectType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
             return false;
38 38
         }
39 39
 
40
-        $requiredFields = array_filter($this->getConfig()->getFields(), function (Field $field) {
40
+        $requiredFields = array_filter($this->getConfig()->getFields(), function(Field $field) {
41 41
             return $field->getConfig()->isRequired();
42 42
         });
43 43
 
Please login to merge, or discard this patch.