21 lines
346 B
PHP
21 lines
346 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WCPay\Vendor\League\Container\Argument;
|
|
|
|
class ResolvableArgument implements ResolvableArgumentInterface
|
|
{
|
|
protected $value;
|
|
|
|
public function __construct(string $value)
|
|
{
|
|
$this->value = $value;
|
|
}
|
|
|
|
public function getValue(): string
|
|
{
|
|
return $this->value;
|
|
}
|
|
}
|