Files
awd/vendor/symfony/maker-bundle/templates/message/Message.tpl.php
2025-09-30 09:35:59 +01: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,
// ) {
// }
}