Skip to content

Commit ca5e150

Browse files
committed
docs(music): add setMinCallMicroseconds method to facade
- Added a new method `setMinCallMicroseconds` to the Music facade. - This method allows setting the minimum call duration in microseconds. - Enhances the functionality of the Music facade for better performance tuning.
1 parent 6d5fed0 commit ca5e150

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.lintmdrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"excludeFiles": [
3+
"./CHANGELOG.md",
34
"src/",
45
"tests/",
56
"vendor/"
@@ -30,4 +31,4 @@
3031
}
3132
]
3233
}
33-
}
34+
}

app/Facades/Music.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* @method static void mixin(object $mixin, bool $replace = true)
2727
* @method static \Illuminate\Support\Collection search(string $keyword, array $sources = [])
2828
* @method static \App\Music setDriver(\Illuminate\Contracts\Concurrency\Driver $driver)
29+
* @method static \App\Music setMinCallMicroseconds(int $minCallMicroseconds)
2930
* @method static \Illuminate\Support\HigherOrderTapProxy|\App\Music tap(callable|null $callback = null)
3031
* @method static \App\Music|mixed unless(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null)
3132
* @method static \App\Music|mixed when(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null)

0 commit comments

Comments
 (0)