소스 검색

Fix Cache (delete() method)

Visman 5 년 전
부모
커밋
eb438fa40e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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);
     }