14 lines
185 B
PHP
14 lines
185 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WCPay\Vendor\League\Container\Argument;
|
|
|
|
interface ArgumentInterface
|
|
{
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getValue();
|
|
}
|