1 | <?php |
||
8 | class ParametersBag implements ParametersBagInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var array $parameters |
||
12 | */ |
||
13 | private $parameters; |
||
14 | |||
15 | public function set($parameters): ParametersBagInterface |
||
24 | |||
25 | /** |
||
26 | * @param string $url |
||
27 | * @param string $method |
||
28 | * @param array $parameters |
||
29 | * |
||
30 | * @return array |
||
31 | */ |
||
32 | public function buildParameters(string $url, string $method, array $parameters) |
||
58 | } |
||
59 |