Skip to content

Commit 7e33f83

Browse files
committed
added status method to to InvoiceHelpers traits
1 parent 1915fd8 commit 7e33f83

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/Traits/InvoiceHelpers.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,17 @@ public function name(string $name)
2424
return $this;
2525
}
2626

27+
/**
28+
* @param string $status
29+
* @return $this
30+
*/
31+
public function status(string $status)
32+
{
33+
$this->status = $status;
34+
35+
return $this;
36+
}
37+
2738
public function notes(string $notes)
2839
{
2940
$this->notes = $notes;

0 commit comments

Comments
 (0)