2022-02-18 19:09:35 +07:00

14 lines
211 B
PHP

<?php
namespace WP_Rocket\Engine\Container\Argument;
interface RawArgumentInterface
{
/**
* Return the value of the raw argument.
*
* @return mixed
*/
public function getValue();
}