Matthieu Vallance
Matthieu Vallance
Just tried to adjust Jest options with `--no-cache`, and to avoid multiple processes `-w 1` but the test is still failing. [https://gitlab.com/matthieu88160/stryker-issue/-/jobs/907736980](https://gitlab.com/matthieu88160/stryker-issue/-/jobs/907736980)
Maybe a lead for this problem: It seems the NodeEnvironment teardown method triggers the loss of context. When removing the line that triggers the context to be null or when...
> Same issue here, is there some work around that you have used? Not for now, I sadly not have time to work on it for a while. > What...
Working on a system to sync classes between multiple language, driven by PHP as main development language. Our principal use case is to generate Enums from class/interface constants. We are...
> Funny, I just saw this: https://twitter.com/PHPRFCBot/status/1372252058028449797 😄 Such a great feature. Enums are just an example case, constants still fit well for internal class configuration constant even if Enums...
Working on custom directive integration in a project, I found the GraphQL\Executor\Values able to perform directive detection and argument type casting: ```PHP $cacheDirective= Values::getDirectiveValues( $resolveInfo->schema->getDirective('cache'), $resolveInfo->fieldNodes[0], $resolveInfo->variableValues ); if ($cacheDirective)...