HEX
Server: LiteSpeed
System: Linux cp48-ga.privatesystems.net 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64
User: fabcultdm (1502)
PHP: 8.2.31
Disabled: syslog
Upload Files
File: /home/fabcultdm/public_html/wp-includes/php-ai-client/src/Common/Contracts/CachesDataInterface.php
<?php

declare (strict_types=1);
namespace WordPress\AiClient\Common\Contracts;

/**
 * Interface for objects that cache data.
 *
 * @since 0.4.0
 */
interface CachesDataInterface
{
    /**
     * Invalidates all caches managed by this object.
     *
     * @since 0.4.0
     *
     * @return void
     */
    public function invalidateCaches(): void;
}