| 1 | <?php |
||
| 18 | class NoopStringConverter implements StringConverter |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * Only types that are known to be strings should be passed to this converter, |
||
| 22 | * so we can just return the value. |
||
| 23 | * |
||
| 24 | * @param string $value |
||
| 25 | * @return string |
||
| 26 | */ |
||
| 27 | 5 | public function convert($value): string |
|
| 31 | } |
||
| 32 |