Skip to content

Commit

Permalink
doc: replace self by Task in reactive execution time methods
Browse files Browse the repository at this point in the history
  • Loading branch information
tomloprod committed May 20, 2024
1 parent c5e62ea commit ec32e21
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,10 @@ $task->getStartTimestamp(): float
$task->getEndTimestamp(): float

// Reactive execution time methods
$task->onExceedsMilliseconds(float $milliseconds, callable $fn): ?self
$task->onExceedsSeconds(float $seconds, callable $fn): ?self
$task->onExceedsMinutes(float $minutes, callable $fn): ?self
$task->onExceedsHours(float $hours, callable $fn): ?self
$task->onExceedsMilliseconds(float $milliseconds, callable $fn): ?Task
$task->onExceedsSeconds(float $seconds, callable $fn): ?Task
$task->onExceedsMinutes(float $minutes, callable $fn): ?Task
$task->onExceedsHours(float $hours, callable $fn): ?Task
```

### `Group`
Expand Down

0 comments on commit ec32e21

Please sign in to comment.