Skip to content
Snippets Groups Projects
Commit ea99a7a5 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Fixed error in cache helper

parent b08a0808
No related branches found
No related tags found
2 merge requests!1502Development,!1486trying speed without pv
......@@ -2,6 +2,8 @@
namespace App;
use Illuminate\Support\Facades\Redis;
class CacheHelper
{
......@@ -12,7 +14,7 @@ class CacheHelper
public static function put($key, $value, $timeSeconds)
{
$cacherItem = [
'timeSeconds' => $time,
'timeSeconds' => $timeSeconds,
'key' => $key,
'value' => $value,
];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment