test_helpers-1.0.0-alpha6/tests/modules/test_helpers_test/src/ServiceWithFactory.php
tests/modules/test_helpers_test/src/ServiceWithFactory.php
<?php
declare(strict_types=1);
namespace Drupal\test_helpers_test;
use Drupal\Core\Messenger\MessengerInterface;
/**
* A ServiceWithFactory service.
*/
class ServiceWithFactory {
/**
* {@inheritdoc}
*/
public function __construct(
public MessengerInterface $messenger,
) {
}
}
