php-resque
php-resque copied to clipboard
An implementation of Resque in PHP.
See chrisboulton/php-resque#35 for details and an early implementation. In a nutshell, reuse job processes for up to X jobs rather than forking for every one.
Hey👋 add this cool x-ray badge which shows excellent information about your project; undoubtedly, other developers can find this helpful.
Function `strftime` is deprecated in PHP 8.1. I have updated the code to use `date` instead.
Using ${var} in strings is deprecated. This is the only instance where the deprecated syntax is used.
This removes the internal PSR-3 logger. Now, if no custom logger is set up in the APP_INCLUDE, logging is disabled. I think by now everyone is using PSR-3 and there's...
PHP 8+
Hello, do you have plans to refactor code to upgrade it to PHP 8.1+? as minimum function strftime is deprecated: https://php.watch/versions/8.1/strftime-gmstrftime-deprecated thanks!
## Expected Behavior No deprecation notices ## Current Behavior PHP outputs deprecation notices due to undefined class properties that are later assigned. ``` PHP Deprecated: Creation of dynamic property Resque_Worker::$logLevel...
Using ${var} in strings is deprecated, use {$var} instead ## Expected Behavior I got error when run code on php 8.2, it relate to syntax of php 8.2 Deprecated: Using...