vendor/elements/process-manager-bundle/src/Message/CheckCommandAliveMessage.php line 5

Open in your IDE?
  1. <?php
  2. namespace Elements\Bundle\ProcessManagerBundle\Message;
  3. class CheckCommandAliveMessage
  4. {
  5.     public function __construct(
  6.         private int $monitoringItemId,
  7.     ){
  8.     }
  9.     public function getMonitoringItemId(): int
  10.     {
  11.         return $this->monitoringItemId;
  12.     }
  13. }