Skip to content

Commit 0843c37

Browse files
committed
IHF: Readme minor fixes.
1 parent b2684e0 commit 0843c37

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,17 +95,17 @@ $array = array_except_value($array, ['bar', 'baz']);
9595
Calls artisan console command in background. Code execution continues immediately, without waiting for results.
9696
9797
```php
98-
call_in_background('foo');
98+
call_in_background('report:monthly');
9999
100-
// "php artisan foo" would be called in background
100+
// "php artisan report:monthly" would be called in background
101101
```
102102
103103
Optional `before` and `after` sub-commands can be set as a second and third parameters:
104104
105105
```php
106-
call_in_background('foo:bar baz', 'sleep 0.3');
106+
call_in_background('report:monthly subscriptions', 'sleep 0.3');
107107
108-
// "sleep 0.3 && php artisan foo:bar baz" would be called in background
108+
// "sleep 0.3 && php artisan report:monthly subscriptions" would be called in background
109109
```
110110
111111
## Database

0 commit comments

Comments
 (0)