Completed
Push — master ( 14d264...b8b70e )
by Portey
05:01
created
src/Parser/Ast/Fragment.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@  discard block
 block discarded – undo
24 24
     /**
25 25
      * Fragment constructor.
26 26
      *
27
-     * @param                 $name
28
-     * @param                 $model
27
+     * @param                 boolean|null $name
28
+     * @param                 boolean|null $model
29 29
      * @param Field[]|Query[] $children
30 30
      */
31 31
     public function __construct($name, $model, $children)
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     }
85 85
 
86 86
     /**
87
-     * @return Field[]|Query[]
87
+     * @return Query[]
88 88
      */
89 89
     public function getFields()
90 90
     {
Please login to merge, or discard this patch.
src/Parser/Ast/Query.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@  discard block
 block discarded – undo
23 23
     /** @var Field[]|Query[] */
24 24
     protected $fields;
25 25
 
26
+    /**
27
+     * @param boolean|string $alias
28
+     */
26 29
     public function __construct($name, $alias = null, $arguments = [], $fields = [])
27 30
     {
28 31
         $this->name      = $name;
@@ -61,7 +64,7 @@  discard block
 block discarded – undo
61 64
     }
62 65
 
63 66
     /**
64
-     * @return Field[]|Query[]
67
+     * @return Query[]
65 68
      */
66 69
     public function getFields()
67 70
     {
Please login to merge, or discard this patch.
src/Schema.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -45,6 +45,9 @@
 block discarded – undo
45 45
     {
46 46
     }
47 47
 
48
+    /**
49
+     * @param string $name
50
+     */
48 51
     public function addQuery($name, AbstractObjectType $query)
49 52
     {
50 53
         $this->getQueryType()->getConfig()->addField($name, $query);
Please login to merge, or discard this patch.
Tests/Type/ObjectTypeTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
                         'type' => 'int'
46 46
                     ]
47 47
                 ],
48
-                'resolve'   => function ($object, $args = []) {
48
+                'resolve'   => function($object, $args = []) {
49 49
 
50 50
                 }
51 51
             ]);
Please login to merge, or discard this patch.
src/Definition/TypeDefinitionType.php 1 patch
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: 03.12.15
4
- *
5
- * @author Portey Vasil <[email protected]>
6
- */
3
+     * Date: 03.12.15
4
+     *
5
+     * @author Portey Vasil <[email protected]>
6
+     */
7 7
 
8 8
 namespace Youshido\GraphQL\Definition;
9 9
 
Please login to merge, or discard this patch.
src/Parser/Value/ValueInterface.php 1 patch
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.
src/Request.php 1 patch
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: 23.11.15
4
- *
5
- * @author Portey Vasil <[email protected]>
6
- */
3
+     * Date: 23.11.15
4
+     *
5
+     * @author Portey Vasil <[email protected]>
6
+     */
7 7
 
8 8
 namespace Youshido\GraphQL;
9 9
 
Please login to merge, or discard this patch.
src/Type/Scalar/FloatType.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
24 24
     public function getDescription()
25 25
     {
26 26
         return 'The `Float` scalar type represents signed double-precision fractional ' .
27
-               'values as specified by ' .
28
-               '[IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).';
27
+                'values as specified by ' .
28
+                '[IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).';
29 29
     }
30 30
 
31 31
 }
32 32
\ No newline at end of file
Please login to merge, or discard this patch.
src/Type/Scalar/IntType.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,9 +26,9 @@
 block discarded – undo
26 26
     public function getDescription()
27 27
     {
28 28
         return 'The `Int` scalar type represents non-fractional signed whole numeric ' .
29
-               'values. Int can represent values between -(2^53 - 1) and 2^53 - 1 since ' .
30
-               'represented in JSON as double-precision floating point numbers specified' .
31
-               'by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).';
29
+                'values. Int can represent values between -(2^53 - 1) and 2^53 - 1 since ' .
30
+                'represented in JSON as double-precision floating point numbers specified' .
31
+                'by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).';
32 32
     }
33 33
 
34 34
 }
35 35
\ No newline at end of file
Please login to merge, or discard this patch.