Skip to content

Instantly share code, notes, and snippets.

@mmouih
Created January 21, 2024 23:00
Show Gist options
  • Save mmouih/a6e90bb7c35898f61a5a8ea7ca6b659d to your computer and use it in GitHub Desktop.
Save mmouih/a6e90bb7c35898f61a5a8ea7ca6b659d to your computer and use it in GitHub Desktop.
Watchdog message
<?php
namespace App\Message;
final class WatchDogMessage
{
public function __construct(readonly private array $services)
{
}
public function getServices(): array
{
return $this->services;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment