Skip to content

Commit

Permalink
Add IssueInterface.php
Browse files Browse the repository at this point in the history
Signed-off-by: Nathanael Esayeas <nathanael.esayeas@protonmail.com>
  • Loading branch information
ghostwriter committed Jul 17, 2024
1 parent 18eed87 commit 1787a3f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/Interface/GitHub/IssueInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

declare(strict_types=1);

namespace Ghostwriter\Arm\Interface\GitHub;

interface IssueInterface
{
public function create(string $issue): string;

public function delete(string $issue): string;

public function exists(string $issue): bool;

public function get(string $issue): string;

public function list(): array;

public function set(string $issue): string;
}

0 comments on commit 1787a3f

Please sign in to comment.