class DependencySerializationTestDummy
Same name and namespace in other branches
- 11.x core/tests/Drupal/Tests/Core/DependencyInjection/DependencySerializationTest.php \Drupal\Tests\Core\DependencyInjection\DependencySerializationTestDummy
- 10 core/tests/Drupal/Tests/Core/DependencyInjection/DependencySerializationTest.php \Drupal\Tests\Core\DependencyInjection\DependencySerializationTestDummy
- 8.9.x core/tests/Drupal/Tests/Core/DependencyInjection/DependencySerializationTest.php \Drupal\Tests\Core\DependencyInjection\DependencySerializationTestDummy
Defines a test class which has a single service as dependency.
Hierarchy
- class \Drupal\Tests\Core\DependencyInjection\DependencySerializationTestDummy implements \Symfony\Component\DependencyInjection\ContainerAwareInterface uses \Drupal\Core\DependencyInjection\DependencySerializationTrait
Expanded class hierarchy of DependencySerializationTestDummy
File
-
core/
tests/ Drupal/ Tests/ Core/ DependencyInjection/ DependencySerializationTest.php, line 77
Namespace
Drupal\Tests\Core\DependencyInjectionView source
class DependencySerializationTestDummy implements ContainerAwareInterface {
use DependencySerializationTrait;
/**
* A test service.
*
* @var object
*/
public $service;
/**
* The container.
*
* @var \Symfony\Component\DependencyInjection\ContainerInterface
*/
public $container;
/**
* Constructs a new TestClass object.
*
* @param object $service
* A test service.
*/
public function __construct(\stdClass $service) {
$this->service = $service;
}
/**
* {@inheritdoc}
*/
public function setContainer(ContainerInterface $container = NULL) {
$this->container = $container;
}
/**
* Gets the stored service IDs.
*/
public function getServiceIds() {
return $this->_serviceIds;
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.