-
Notifications
You must be signed in to change notification settings - Fork 222
Add annotation reader cache and fix doctrine typeGuesser #867
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Update AnnotationParser.php Update AnnotationParser.php
docs/annotations/index.md
Outdated
@@ -13,7 +15,7 @@ overblog_graphql: | |||
dir: "%kernel.project_dir%/src/GraphQL" | |||
suffix: ~ | |||
``` | |||
|
|||
To use annoation, you must instal ' '' ' and use the annatotton mapping type |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this please
composer.json
Outdated
@@ -3,7 +3,10 @@ | |||
"type": "symfony-bundle", | |||
"license": "MIT", | |||
"description": "This bundle provides tools to build a GraphQL server in your Symfony App.", | |||
"keywords": ["GraphQL", "Relay"], | |||
"keywords": [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert all changes on this file please.
// @codeCoverageIgnoreEnd | ||
} | ||
if (!class_exists(ApcuAdapter::class)) { | ||
// @codeCoverageIgnoreStart |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we ignore a lot of code here can we add tests to cover these intead ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Look good to me, can you just revert master changes from 0.14 branch please, before merging this ?
Add an cache for annotations reader to improve performances.
And fix doctrine typeGuesser with doctrine 2.9