Browse Source

Fix Cache (delete() method)

Visman 5 years ago
parent
commit
eb438fa40e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Core/Cache.php

+ 1 - 1
app/Core/Cache.php

@@ -56,7 +56,7 @@ class Cache
      *
      * @return bool
      */
-    public function delete(striing $key): bool
+    public function delete(string $key): bool
     {
         return $this->provider->delete($key);
     }