repman-io/repman

View on GitHub
src/Service/PackageSynchronizer.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Buddy\Repman\Service;

use Buddy\Repman\Entity\Organization\Package;

interface PackageSynchronizer
{
    public function synchronize(Package $package): void;
}