@@ -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: 04.12.15 |
|
| 4 | - * |
|
| 5 | - * @author Portey Vasil <[email protected]> |
|
| 6 | - */ |
|
| 3 | + * Date: 04.12.15 |
|
| 4 | + * |
|
| 5 | + * @author Portey Vasil <[email protected]> |
|
| 6 | + */ |
|
| 7 | 7 | |
| 8 | 8 | namespace Youshido\GraphQL\Definition\Traits; |
| 9 | 9 | |
@@ -1,9 +1,9 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Date: 04.12.15 |
|
| 4 | - * |
|
| 5 | - * @author Portey Vasil <[email protected]> |
|
| 6 | - */ |
|
| 3 | + * Date: 04.12.15 |
|
| 4 | + * |
|
| 5 | + * @author Portey Vasil <[email protected]> |
|
| 6 | + */ |
|
| 7 | 7 | |
| 8 | 8 | namespace Youshido\GraphQL\Definition\Traits; |
| 9 | 9 | |
@@ -1,9 +1,9 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Date: 20.11.15 |
|
| 4 | - * |
|
| 5 | - * @author Portey Vasil <[email protected]> |
|
| 6 | - */ |
|
| 3 | + * Date: 20.11.15 |
|
| 4 | + * |
|
| 5 | + * @author Portey Vasil <[email protected]> |
|
| 6 | + */ |
|
| 7 | 7 | |
| 8 | 8 | namespace Youshido\GraphQL\Parser\Ast; |
| 9 | 9 | |
@@ -61,7 +61,7 @@ |
||
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | /** |
| 64 | - * @return Field[]|Query[] |
|
| 64 | + * @return Query[] |
|
| 65 | 65 | */ |
| 66 | 66 | public function getFields() |
| 67 | 67 | { |
@@ -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 | |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | ->addField('kind', 'string') |
| 22 | 22 | ->addField('description', 'string') |
| 23 | 23 | ->addField('ofType', new QueryListType(), [ |
| 24 | - 'resolve' => function () { |
|
| 24 | + 'resolve' => function() { |
|
| 25 | 25 | return []; |
| 26 | 26 | } |
| 27 | 27 | ]) |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | /** |
| 190 | 190 | * @param $objectType InputObjectType|ObjectType |
| 191 | 191 | * @param $query Mutation|Query |
| 192 | - * @return null |
|
| 192 | + * @return boolean |
|
| 193 | 193 | */ |
| 194 | 194 | private function checkFieldExist($objectType, $query) |
| 195 | 195 | { |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | } |
| 227 | 227 | |
| 228 | 228 | /** |
| 229 | - * @param $field Field |
|
| 229 | + * @param Field $field Field |
|
| 230 | 230 | * @param $contextValue mixed |
| 231 | 231 | * @param $query Query |
| 232 | 232 | * |
@@ -24,13 +24,13 @@ |
||
| 24 | 24 | // ->addField('name', TypeMap::TYPE_STRING, ['description' => 'The name of the character']) |
| 25 | 25 | // ; |
| 26 | 26 | $config->addFields([ |
| 27 | - 'id' => ['type' => TypeMap::TYPE_ID, |
|
| 28 | - 'required' => true, |
|
| 29 | - 'description' => 'ID of the character'], |
|
| 30 | - 'name' => ['type' => TypeMap::TYPE_STRING, |
|
| 31 | - 'description' => 'The name of the character'], |
|
| 32 | - 'friends' => new ListType(['item' => new CharacterInterface()]) |
|
| 33 | - ]); |
|
| 27 | + 'id' => ['type' => TypeMap::TYPE_ID, |
|
| 28 | + 'required' => true, |
|
| 29 | + 'description' => 'ID of the character'], |
|
| 30 | + 'name' => ['type' => TypeMap::TYPE_STRING, |
|
| 31 | + 'description' => 'The name of the character'], |
|
| 32 | + 'friends' => new ListType(['item' => new CharacterInterface()]) |
|
| 33 | + ]); |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | public function getDescription() |