Fix Cache (delete() method)

This commit is contained in:
Visman 2020-06-05 21:33:43 +07:00
parent 8f63f73fa9
commit eb438fa40e

View file

@ -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);
}