Skip to content

Commit

Permalink
Updates to PHP versions
Browse files Browse the repository at this point in the history
  • Loading branch information
remdex committed Dec 28, 2023
1 parent df67f10 commit da13cba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* @author Chris Boulton <[email protected]>
* @license http://www.opensource.org/licenses/mit-license.php
*/
#[\AllowDynamicProperties]
class Resque_Redis
{
/**
Expand Down
2 changes: 1 addition & 1 deletion lhcphpresque/vendor/colinmollenhour/credis/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -1247,7 +1247,7 @@ protected function read_reply($name = '')
*/
private static function _prepare_command($args)
{
return sprintf('*%d%s%s%s', count($args), CRLF, implode(CRLF, array_map(array('self', '_map'), $args)), CRLF);
return sprintf('*%d%s%s%s', count($args), CRLF, implode(CRLF, array_map('Credis_Client::_map', $args)), CRLF);
}

private static function _map($arg)
Expand Down

0 comments on commit da13cba

Please sign in to comment.