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\Annotation;
use \Attribute;
use Doctrine\Common\Annotations\NamedArgumentConstructorAnnotation;
/**
* Annotation for GraphQL builders
*
* @Annotation
* @Target({"PROPERTY", "METHOD"})
*/
#[Attribute(Attribute::TARGET_PROPERTY | Attribute::TARGET_METHOD)]
abstract class Builder extends Annotation implements NamedArgumentConstructorAnnotation
{
* Builder name.
* @Required
* @var string
public string $value;
* The builder config.
* @var array
public array $config = [];
public function __construct(string $value, array $config = [])
$this->value = $value;
$this->config = $config;
}