@@ -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); |
@@ -65,6 +65,10 @@ |
||
| 65 | 65 | { |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | + /** |
|
| 69 | + * @param string $key |
|
| 70 | + * @param string|false $defaultValue |
|
| 71 | + */ |
|
| 68 | 72 | public function get($key, $defaultValue = null) |
| 69 | 73 | { |
| 70 | 74 | return array_key_exists($key, $this->data) ? $this->data[$key] : $defaultValue; |
@@ -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 | |
@@ -1,9 +1,9 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Date: 02.12.15 |
|
| 4 | - * |
|
| 5 | - * @author Portey Vasil <[email protected]> |
|
| 6 | - */ |
|
| 3 | + * Date: 02.12.15 |
|
| 4 | + * |
|
| 5 | + * @author Portey Vasil <[email protected]> |
|
| 6 | + */ |
|
| 7 | 7 | |
| 8 | 8 | namespace Youshido\GraphQL\Type\Config; |
| 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 |