Skip to content

Instantly share code, notes, and snippets.

@rdmtr
rdmtr / UserController.php
Last active October 7, 2025 09:49
Task 1
<?php
// UserController.php
final readonly class UserController
{
public function __construct(
private HttpClientInterface $httpClient,
private EntityManagerInterface $entityManager,
private ASmsSender $smsSender,
) {