Skip to content

Commit

Permalink
Update demo/src/BillingService.php
Browse files Browse the repository at this point in the history
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
koriym and coderabbitai[bot] authored Dec 9, 2024
1 parent 3d5abd3 commit 3344101
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion demo/src/BillingService.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,16 @@

namespace Demo;

/**
* Service interface for handling billing operations
*/
interface BillingService
{
/**
* Charges an order
*
* @return string The charge confirmation message
*/
#[WeekendBlock]
public function chargeOrder();
public function chargeOrder(): string;
}

0 comments on commit 3344101

Please sign in to comment.