@@ -17,6 +17,11 @@ |
||
| 17 | 17 | */ |
| 18 | 18 | trait WithReason |
| 19 | 19 | { |
| 20 | + /** |
|
| 21 | + * @param string $text |
|
| 22 | + * |
|
| 23 | + * @return \hiqdev\php\billing\charge\modifiers\Modifier |
|
| 24 | + */ |
|
| 20 | 25 | public function reason($text) |
| 21 | 26 | { |
| 22 | 27 | return $this->addAddon('reason', new Reason($text)); |
@@ -17,6 +17,9 @@ |
||
| 17 | 17 | */ |
| 18 | 18 | trait WithSince |
| 19 | 19 | { |
| 20 | + /** |
|
| 21 | + * @return \hiqdev\php\billing\charge\modifiers\Modifier |
|
| 22 | + */ |
|
| 20 | 23 | public function since($time) |
| 21 | 24 | { |
| 22 | 25 | return $this->addAddon('since', new Since($time)); |
@@ -17,6 +17,9 @@ |
||
| 17 | 17 | */ |
| 18 | 18 | trait WithTill |
| 19 | 19 | { |
| 20 | + /** |
|
| 21 | + * @return \hiqdev\php\billing\charge\modifiers\Modifier |
|
| 22 | + */ |
|
| 20 | 23 | public function till($time) |
| 21 | 24 | { |
| 22 | 25 | return $this->addAddon('till', new Till($time)); |