File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 77use GraphQL \Type \Schema ;
88
99/**
10- * Implement this interface and pass an instance to GraphQL::executeQuery to cache validation of ASTs. The details
11- * of how to compute any keys (or whether to validate at all) are left up to you.
10+ * Implement this interface and pass an instance to GraphQL::executeQuery to cache validation of ASTs.
11+ * The details of how to compute any keys (or whether to validate at all) are left up to you.
1212 */
1313interface ValidationCache
1414{
1515 /**
1616 * Return true if the given schema + AST pair has previously been validated successfully.
17- * Only successful validations are cached. A return value of false means the pair is either unknown or has not been validated yet.
17+ * Only successful validations are cached.
18+ * A return value of false means the pair is either unknown or has not been validated yet.
1819 */
1920 public function isValidated (Schema $ schema , DocumentNode $ ast ): bool ;
2021
You can’t perform that action at this time.
0 commit comments