PhpArrayDumperTest.php
Namespace
Drupal\Tests\Component\DependencyInjection\DumperFile
-
core/
tests/ Drupal/ Tests/ Component/ DependencyInjection/ Dumper/ PhpArrayDumperTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\Component\DependencyInjection\Dumper;
use Drupal\Component\DependencyInjection\Dumper\PhpArrayDumper;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\Group;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Tests Drupal\Component\DependencyInjection\Dumper\PhpArrayDumper.
*/
class PhpArrayDumperTest extends OptimizedPhpArrayDumperTest {
/**
* {@inheritdoc}
*/
protected function setUp() : void {
$this->machineFormat = FALSE;
$this->dumperClass = '\\Drupal\\Component\\DependencyInjection\\Dumper\\PhpArrayDumper';
parent::setUp();
}
/**
* {@inheritdoc}
*/
protected static function serializeDefinition(array $service_definition) : array {
return $service_definition;
}
/**
* {@inheritdoc}
*/
protected static function getServiceCall($id, $invalid_behavior = ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE) : string {
if ($invalid_behavior !== ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE) {
return sprintf('@?%s', $id);
}
return sprintf('@%s', $id);
}
/**
* {@inheritdoc}
*/
protected static function getParameterCall($name) : string {
return '%' . $name . '%';
}
/**
* {@inheritdoc}
*/
protected static function getCollection($collection, $resolve = TRUE) {
return $collection;
}
}
Classes
| Title | Deprecated | Summary |
|---|---|---|
| PhpArrayDumperTest | Tests Drupal\Component\DependencyInjection\Dumper\PhpArrayDumper. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.