Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. OptimizedPhpArrayDumper.php

function OptimizedPhpArrayDumper::getParameters

Gets parameters of the container as a PHP array.

Return value

array The escaped and prepared parameters of the container.

1 call to OptimizedPhpArrayDumper::getParameters()
OptimizedPhpArrayDumper::getArray in core/lib/Drupal/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumper.php
Gets the service container definition as a PHP array.

File

core/lib/Drupal/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumper.php, line 110

Class

OptimizedPhpArrayDumper
OptimizedPhpArrayDumper dumps a service container as a serialized PHP array.

Namespace

Drupal\Component\DependencyInjection\Dumper

Code

protected function getParameters() {
    if (!$this->container
        ->getParameterBag()
        ->all()) {
        return [];
    }
    $parameters = $this->container
        ->getParameterBag()
        ->all();
    $is_compiled = $this->container
        ->isCompiled();
    return $this->prepareParameters($parameters, $is_compiled);
}
RSS feed
Powered by Drupal