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\Hydrator\Converters;
/**
* Calls the "convert" method on the target service or "__invoke"
* if no method specified
*
* @Annotation
*/
class Service implements ConverterAnnotationInterface
{
* Service ID.
public string $value;
* Method name to call on the target service.
public string $method;
public bool $isCollection;
public static function getConverterClass(): string
return static::class.'Converter';
}
public function isCollection(): bool
return $this->isCollection ?? false;