Skip to content

Commit

Permalink
New packages version allowed
Browse files Browse the repository at this point in the history
  • Loading branch information
borutainfo committed Jan 7, 2023
1 parent 0832c83 commit 3750e7b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
"require": {
"php": "^7.1|^8.0",
"ext-pdo": "*",
"symfony/yaml": "^4.2|^5.2",
"pimple/pimple": "^3.2",
"cartalyst/collections": "^1.1",
"psr/log": "^1.1|^2.0",
"predis/predis": "^1.1",
"symfony/yaml": "^4.0|^5.0|^6.0",
"pimple/pimple": "^3.0",
"cartalyst/collections": "^1.1|^2.0",
"psr/log": "^1.1|^2.0|^3.0",
"predis/predis": "^1.1|^2.0",
"phpmailer/phpmailer": "^6.0"
},
"require-dev": {
Expand Down
4 changes: 2 additions & 2 deletions src/Gateway/RedisGatewayAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function __construct(RedisConfig $config)

/**
* @param string $key
* @param $value
* @param string $value
* @return bool
*/
protected function setKeyIfNotExists(string $key, string $value): bool
Expand Down Expand Up @@ -97,6 +97,6 @@ protected function pushToList(string $key, string $value): bool
*/
protected function popFromList(string $key): ?string
{
return $this->client->lpop($key) ?? null;
return $this->client->lpop($key);
}
}

0 comments on commit 3750e7b

Please sign in to comment.