Skip to content

Instantly share code, notes, and snippets.

@kevinquillen
Last active February 18, 2025 21:42
Show Gist options
  • Save kevinquillen/fe365bad7b9dc93b88455db89b5f8511 to your computer and use it in GitHub Desktop.
Save kevinquillen/fe365bad7b9dc93b88455db89b5f8511 to your computer and use it in GitHub Desktop.
Example class with Autowired services
class ApiClientFactory {
/**
* {@inheritdoc}
*/
public function __construct(
private readonly ClientFactory $clientFactory,
protected DomainNegotiator $domainNegotiator,
protected ConfigFactoryInterface $configFactory,
protected LoggerChannelFactoryInterface $loggerChannelFactory,
) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment