for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
declare(strict_types=1);
namespace Overblog\GraphQLBundle\Definition;
use ArrayObject;
use GraphQL\Type\Definition\ResolveInfo;
class ResolverArgs
{
public ArgumentInterface $args;
public ResolveInfo $info;
/** @var mixed */
public $value;
public $context;
/**
* @param mixed $value
* @param mixed $context
*/
public function __construct($value, ArgumentInterface $args, ArrayObject $context, ResolveInfo $info)
$this->value = $value;
$this->args = $args;
$this->context = $context;
$this->info = $info;
}