Skip to content

Commit

Permalink
Typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
peppeocchi committed Oct 19, 2020
1 parent 7030fb6 commit 803c357
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ $scheduler->work();
```
The above code starts a worker that will run your job/s every minute.
This is meant to be a testing/debugging tool, but you're free to use it however you like.
You can optionally pass an array of "second" of when you want the worker to run your jobs, for example by passing `[0, 30]`, the worker will run your jobs at second **0** and at second **30** of the minute.
You can optionally pass an array of "seconds" of when you want the worker to run your jobs, for example by passing `[0, 30]`, the worker will run your jobs at second **0** and at second **30** of the minute.
```php
$scheduler->work([0, 10, 25, 50, 55]);
```
Expand Down Expand Up @@ -496,7 +496,7 @@ $scheduler->work();
```
Then in your command like run `php worker.php`. This will start a foreground process that you can kill by simply exiting the command.

The worker is not meant to collect any data about your runs, and as already said it is meant to be a testing/debuggin tool.
The worker is not meant to collect any data about your runs, and as already said it is meant to be a testing/debugging tool.

## License
[The MIT License (MIT)](LICENSE)

0 comments on commit 803c357

Please sign in to comment.