📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 20:48:37
📂
/
/
var
/
softaculous
/
sitepad
/
editor
/
site-data
/
plugins
/
kkart-pro
/
vendor
/
league
/
container
/
src
/
Argument
✏️
Editing: RawArgument.php
<?php declare(strict_types=1); namespace Automattic\Kkart\Vendor\League\Container\Argument; class RawArgument implements RawArgumentInterface { /** * @var mixed */ protected $value; /** * Construct. * * @param mixed $value */ public function __construct($value) { $this->value = $value; } /** * {@inheritdoc} */ public function getValue() { return $this->value; } }
💾 Save Changes
❌ Cancel