This commit is contained in:
Alex P. 2024-11-06 09:14:44 +02:00
parent e813816e06
commit 1659d30ded
No known key found for this signature in database
GPG key ID: 54487A734A204D71

View file

@ -58,7 +58,7 @@ class Cache {
* *
* @param string $key The key. * @param string $key The key.
*/ */
public function delete( string $key ) { public function delete( string $key ): void {
delete_transient( $this->prefix . $key ); delete_transient( $this->prefix . $key );
} }