public function PhpArrayDumper::getArray in Service Container 7.2
Same name in this branch
- 7.2 lib/Drupal/Core/DependencyInjection/Dumper/PhpArrayDumper.php \Drupal\Core\DependencyInjection\Dumper\PhpArrayDumper::getArray()
- 7.2 lib/Drupal/Component/DependencyInjection/Dumper/PhpArrayDumper.php \Drupal\Component\DependencyInjection\Dumper\PhpArrayDumper::getArray()
Same name and namespace in other branches
- 7 lib/Drupal/Component/DependencyInjection/Dumper/PhpArrayDumper.php \Drupal\Component\DependencyInjection\Dumper\PhpArrayDumper::getArray()
Gets the service container definition as a PHP array.
Return value
array A PHP array representation of the service container.
Overrides OptimizedPhpArrayDumper::getArray
File
- lib/
Drupal/ Component/ DependencyInjection/ Dumper/ PhpArrayDumper.php, line 29 - Contains \Drupal\Component\DependencyInjection\Dumper\PhpArrayDumper.
Class
- PhpArrayDumper
- PhpArrayDumper dumps a service container as a PHP array.
Namespace
Drupal\Component\DependencyInjection\DumperCode
public function getArray() {
$this->serialize = FALSE;
return parent::getArray();
}