SAREhub/EasyECA

View on GitHub
src/SAREhub/EasyECA/Event/RuleGroupRemovedEvent.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SAREhub\EasyECA\Event;

class RuleGroupRemovedEvent
{
    /**
     * @var string
     */
    private $groupId;

    public function __construct(string $groupId)
    {
        $this->groupId = $groupId;
    }

    public function getGroupId(): string
    {
        return $this->groupId;
    }
}