mirror of
https://github.com/idanoo/php-resque
synced 2025-07-01 21:52:21 +00:00
Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
aad9334fba |
3 changed files with 6 additions and 3 deletions
|
@ -1,4 +1,7 @@
|
||||||
# 2.5.2 (2025-06-08)
|
# 2.5.3 (2025-06-08)
|
||||||
|
- Update typing of Log() to support all psr\log versions
|
||||||
|
|
||||||
|
- # 2.5.2 (2025-06-08)
|
||||||
- Update typing of Log() to support all psr\log versions
|
- Update typing of Log() to support all psr\log versions
|
||||||
|
|
||||||
# 2.5.1 (2025-06-08)
|
# 2.5.1 (2025-06-08)
|
||||||
|
|
|
@ -28,7 +28,7 @@ class Log extends \Psr\Log\AbstractLogger
|
||||||
*
|
*
|
||||||
* @return null
|
* @return null
|
||||||
*/
|
*/
|
||||||
public function log($level, string|\Stringable $message, array $context = []): void
|
public function log($level, $message, array $context = []): void
|
||||||
{
|
{
|
||||||
$logLevels = [
|
$logLevels = [
|
||||||
'emergency',
|
'emergency',
|
||||||
|
|
|
@ -12,7 +12,7 @@ namespace Resque;
|
||||||
|
|
||||||
class Resque
|
class Resque
|
||||||
{
|
{
|
||||||
public const VERSION = '2.5.2';
|
public const VERSION = '2.5.3';
|
||||||
|
|
||||||
public const DEFAULT_INTERVAL = 5;
|
public const DEFAULT_INTERVAL = 5;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue