You are here

public function DependencySerializationTestDummy::__construct in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/DependencyInjection/DependencySerializationTest.php \Drupal\Tests\Core\DependencyInjection\DependencySerializationTestDummy::__construct()
  2. 9 core/tests/Drupal/Tests/Core/DependencyInjection/DependencySerializationTest.php \Drupal\Tests\Core\DependencyInjection\DependencySerializationTestDummy::__construct()

Constructs a new TestClass object.

Parameters

object $service: A test service.

File

core/tests/Drupal/Tests/Core/DependencyInjection/DependencySerializationTest.php, line 99
Contains \Drupal\Tests\Core\DependencyInjection\DependencySerializationTest.

Class

DependencySerializationTestDummy
Defines a test class which has a single service as dependency.

Namespace

Drupal\Tests\Core\DependencyInjection

Code

public function __construct(\stdClass $service) {
  $this->service = $service;
}