repman-io/repman

View on GitHub
src/Message/Organization/Package/RemoveBitbucketHook.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Buddy\Repman\Message\Organization\Package;

final class RemoveBitbucketHook
{
    private string $packageId;

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

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