Skip to content

Commit

Permalink
fix(release): interface
Browse files Browse the repository at this point in the history
  • Loading branch information
thepercival committed Nov 11, 2023
1 parent 9642745 commit efad1ac
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions domain/Queue/PlanningInput/CreatePlanningsInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

namespace SportsScheduler\Queue\PlanningInput;

use SportsPlanning\Input as PlanningInput;

interface CreatePlanningsInterface
{
public function sendCreatePlannings(
PlanningInput $input,
string|int|null $competitionId = null,
int $startRoundNumber = null,
int|null $priority = null
): void;
}

0 comments on commit efad1ac

Please sign in to comment.