Files
guides/projects/priceservice/vendor/symfony/maker-bundle/templates/message/Message.tpl.php
2026-06-03 22:05:20 +02:00

20 lines
411 B
PHP

<?= "<?php\n" ?>
namespace <?= $namespace; ?>;
<?= $use_statements; ?>
<?php if ($transport): ?>#[AsMessage('<?= $transport ?>')]<?= "\n" ?><?php endif ?>
final class <?= $class_name."\n" ?>
{
/*
* Add whatever properties and methods you need
* to hold the data for this message class.
*/
// public function __construct(
// public readonly string $name,
// ) {
// }
}