| 1 | <?php declare(strict_types=1); |
||
| 8 | class BaseString |
||
| 9 | { |
||
| 10 | private $method; |
||
| 11 | |||
| 12 | private $url; |
||
| 13 | |||
| 14 | private $parameters; |
||
| 15 | |||
| 16 | 24 | public function __construct(string $method, Url $url, Parameters $parameters) |
|
| 22 | |||
| 23 | 24 | public function getString(): string |
|
| 27 | |||
| 28 | 24 | private function getBaseString(): string |
|
| 32 | |||
| 33 | 24 | private function getOauthParameters(): string |
|
| 43 | } |
||
| 44 |