Skip to content

Commit 3e7e789

Browse files
author
Andrey Helldar
committed
Updated Cashier Statuses Helper contract
1 parent dc87724 commit 3e7e789

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/Cashier/Helpers/Statuses.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ interface Statuses
1111
{
1212
public function __construct(Model $model);
1313

14-
public function hasUnknown(string $status = null): bool;
14+
public function hasUnknown($status = null): bool;
1515

16-
public function hasCreated(string $status = null): bool;
16+
public function hasCreated($status = null): bool;
1717

18-
public function hasFailed(string $status = null): bool;
18+
public function hasFailed($status = null): bool;
1919

20-
public function hasRefunded(string $status = null): bool;
20+
public function hasRefunded($status = null): bool;
2121

22-
public function hasRefunding(string $status = null): bool;
22+
public function hasRefunding($status = null): bool;
2323

24-
public function hasSuccess(string $status = null): bool;
24+
public function hasSuccess($status = null): bool;
2525

26-
public function inProgress(string $status = null): bool;
26+
public function inProgress($status = null): bool;
2727
}

0 commit comments

Comments
 (0)