Skip to content

Commit cf20ef3

Browse files
committed
formatting
1 parent d71e123 commit cf20ef3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/Validator/ValidationCache.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@
77
use 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
*/
1313
interface 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

0 commit comments

Comments
 (0)