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

Breadcrumb

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

function OptimizedPhpArrayDumper::getParameterCall

Gets a parameter reference in a suitable PHP array format.

Parameters

string $name: The name of the parameter to get a reference for.

Return value

string|object A suitable representation of the parameter reference.

1 call to OptimizedPhpArrayDumper::getParameterCall()
OptimizedPhpArrayDumper::dumpValue in core/lib/Drupal/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumper.php
Dumps the value to PHP array format.
1 method overrides OptimizedPhpArrayDumper::getParameterCall()
PhpArrayDumper::getParameterCall in core/lib/Drupal/Component/DependencyInjection/Dumper/PhpArrayDumper.php
Gets a parameter reference in a suitable PHP array format.

File

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

Class

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

Namespace

Drupal\Component\DependencyInjection\Dumper

Code

protected function getParameterCall($name) {
    return (object) [
        'type' => 'parameter',
        'name' => $name,
    ];
}
RSS feed
Powered by Drupal