vito/app/Contracts/SourceControlProvider.php
Saeed Vaziry fd2244d382
update composer (#84)
* update composer
log viewer
code style format

* fix composer
2024-01-01 22:05:31 +01:00

21 lines
543 B
PHP
Executable File

<?php
namespace App\Contracts;
interface SourceControlProvider
{
public function connect(): bool;
public function getRepo(?string $repo = null): mixed;
public function fullRepoUrl(string $repo, string $key): string;
public function deployHook(string $repo, array $events, string $secret): array;
public function destroyHook(string $repo, string $hookId): void;
public function getLastCommit(string $repo, string $branch): ?array;
public function deployKey(string $title, string $repo, string $key): void;
}