%PDF- %PDF-
Direktori : /var/www/pn/wp-content/plugins/wp-rocket/inc/Engine/Container/Argument/ |
Current File : //var/www/pn/wp-content/plugins/wp-rocket/inc/Engine/Container/Argument/RawArgument.php |
<?php namespace WP_Rocket\Engine\Container\Argument; class RawArgument implements RawArgumentInterface { /** * @var mixed */ protected $value; /** * {@inheritdoc} */ public function __construct($value) { $this->value = $value; } /** * {@inheritdoc} */ public function getValue() { return $this->value; } }