@@ -24,8 +24,8 @@ discard block |
||
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 |
||
84 | 84 | } |
85 | 85 | |
86 | 86 | /** |
87 | - * @return Field[]|Query[] |
|
87 | + * @return Query[] |
|
88 | 88 | */ |
89 | 89 | public function getFields() |
90 | 90 | { |
@@ -23,6 +23,9 @@ discard block |
||
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 |
||
61 | 64 | } |
62 | 65 | |
63 | 66 | /** |
64 | - * @return Field[]|Query[] |
|
67 | + * @return Query[] |
|
65 | 68 | */ |
66 | 69 | public function getFields() |
67 | 70 | { |
@@ -45,6 +45,9 @@ |
||
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); |
@@ -45,7 +45,7 @@ |
||
45 | 45 | 'type' => 'int' |
46 | 46 | ] |
47 | 47 | ], |
48 | - 'resolve' => function ($object, $args = []) { |
|
48 | + 'resolve' => function($object, $args = []) { |
|
49 | 49 | |
50 | 50 | } |
51 | 51 | ]); |
@@ -1,9 +1,9 @@ |
||
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 |
@@ -1,9 +1,9 @@ |
||
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 |
@@ -1,9 +1,9 @@ |
||
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 |
@@ -24,8 +24,8 @@ |
||
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 |
@@ -26,9 +26,9 @@ |
||
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 |