• File: operation-query-interface.php
  • Full Path: /home/builxejc/public_html/wp-content/plugins/image-optimization/classes/async-operation/interfaces/operation-query-interface.php
  • Date Modified: 02/06/2024 7:05 PM
  • File size: 265 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace ImageOptimization\Classes\Async_Operation\Interfaces;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

interface Operation_Query_Interface {
	public function get_query(): array;
	public function get_return_type(): string;
}