Skip to content

Commit 3344101

Browse files
Update demo/src/BillingService.php
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 3d5abd3 commit 3344101

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

demo/src/BillingService.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@
44

55
namespace Demo;
66

7+
/**
8+
* Service interface for handling billing operations
9+
*/
710
interface BillingService
811
{
12+
/**
13+
* Charges an order
14+
*
15+
* @return string The charge confirmation message
16+
*/
917
#[WeekendBlock]
10-
public function chargeOrder();
18+
public function chargeOrder(): string;
1119
}

0 commit comments

Comments
 (0)