14 lines
211 B
PHP
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();
|
|
}
|