HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.30
System: Linux iZj6c1151k3ad370bosnmsZ 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64
User: root (0)
PHP: 7.4.30
Disabled: NONE
Upload Files
File: /var/www/html/sparkle/wp-content/plugins/cloudflare/src/Integration/DataStoreInterface.php
<?php

namespace CF\Integration;

interface DataStoreInterface
{
    /**
     * @param $client_api_key
     * @param $email
     * @param $unique_id
     * @param $user_key
     *
     * @return mixed
     */
    public function createUserDataStore($client_api_key, $email, $unique_id, $user_key);

    /**
     * @return mixed
     */
    public function getHostAPIUserUniqueId();

    /**
     * @return mixed
     */
    public function getClientV4APIKey();

    /**
     * @return mixed
     */
    public function getHostAPIUserKey();

    /**
     * @return mixed
     */
    public function getCloudFlareEmail();

    /**
     * @param $key
     *
     * @return mixed
     */
    public function get($key);

    /**
     * @param $key
     * @param $value
     *
     * @return mixed
     */
    public function set($key, $value);
}