Issue #3232092 by daffie, mondrake: [Symfony 6] Add "string|array" to the method Drupal\Component\DependencyInjection\Dumper\OptimizedPhpArrayDumper::dump()

merge-requests/1492/merge
catch 2021-12-13 12:58:15 +00:00
parent 1553465e32
commit e3e4995829
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class OptimizedPhpArrayDumper extends Dumper {
/**
* {@inheritdoc}
*/
public function dump(array $options = []) {
public function dump(array $options = []): string|array {
return serialize($this->getArray());
}