|
...
|
...
|
@@ -43,7 +43,7 @@ abstract class Request implements RequestInterface |
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function append(string $name, $value): bool
|
|
|
|
public function append(string $name, $key, $value): bool
|
|
|
|
{
|
|
|
|
if (!property_exists($this, $name)) {
|
|
|
|
return false;
|
|
...
|
...
|
@@ -52,7 +52,7 @@ abstract class Request implements RequestInterface |
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$array = &$this->{$name};
|
|
|
|
Arr::set($array, $name, $value);
|
|
|
|
Arr::set($array, $key, $value);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
...
|
...
|
|