public function OptimizedPhpArrayDumper::dump in Service Container 7.2
Same name and namespace in other branches
- 7 lib/Drupal/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumper.php \Drupal\Component\DependencyInjection\Dumper\OptimizedPhpArrayDumper::dump()
Dumps the service container.
@api
Parameters
array $options An array of options:
Return value
string The representation of the service container
Overrides DumperInterface::dump
File
- lib/
Drupal/ Component/ DependencyInjection/ Dumper/ OptimizedPhpArrayDumper.php, line 56 - Contains \Drupal\Component\DependencyInjection\Dumper\OptimizedPhpArrayDumper.
Class
- OptimizedPhpArrayDumper
- OptimizedPhpArrayDumper dumps a service container as a serialized PHP array.
Namespace
Drupal\Component\DependencyInjection\DumperCode
public function dump(array $options = array()) {
return serialize($this
->getArray());
}