Skip to content

Commit 3cb2d43

Browse files
committed
IHF: Readme minor fixes.
1 parent 321e748 commit 3cb2d43

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,16 @@ $array = array_except_value($array, ['bar', 'baz']);
9292
9393
#### `call_in_background()`
9494
95-
Calls artisan console command in background, with optional `before` and `after` sub-commands:
95+
Calls artisan console command in background. Code execution continues immediately, without waiting for the results.
9696
9797
```php
9898
call_in_background('foo');
9999
100100
// "php artisan foo" would be called in background
101101
```
102102
103+
Optional `before` and `after` sub-commands can be set as a second and third parameters:
104+
103105
```php
104106
call_in_background('foo:bar baz', 'sleep 0.3');
105107

0 commit comments

Comments
 (0)