| 1 | <?php |
||
| 7 | final class ArrayValuesNormalizerRenderer implements QueryStringRendererInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var NativeRenderer |
||
| 11 | */ |
||
| 12 | private $renderer; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * ArrayValuesStringifier constructor. |
||
| 16 | */ |
||
| 17 | public function __construct(QueryStringRendererInterface $renderer = null) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @inheritDoc |
||
| 24 | */ |
||
| 25 | public function render(QueryString $queryString): string |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @inheritDoc |
||
| 36 | */ |
||
| 37 | public function getEncoding(): int |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @inheritDoc |
||
| 44 | */ |
||
| 45 | public function withEncoding(int $encoding): QueryStringRendererInterface |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @inheritDoc |
||
| 52 | */ |
||
| 53 | public function getSeparator(): string |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @inheritDoc |
||
| 60 | */ |
||
| 61 | public function withSeparator(?string $separator): QueryStringRendererInterface |
||
| 65 | } |
||
| 66 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..