Service.php in Drupal 9
Same filename and directory in other branches
Namespace
Drupal\new_dependency_testFile
core/modules/system/tests/modules/new_dependency_test/src/Service.phpView source
<?php
namespace Drupal\new_dependency_test;
/**
* A service that can decorated itself.
*
* @see new_dependency_test.services.yml
*/
class Service {
/**
* The decorated service.
*
* @var \Drupal\new_dependency_test\Service
*/
protected $inner;
/**
* Service constructor.
*
* @param \Drupal\new_dependency_test\Service|null $inner
* The service to decorate.
*/
public function __construct(Service $inner = NULL) {
$this->inner = $inner;
}
/**
* Determines if the service is decorated.
*
* @return bool
* TRUE if the services is decorated, FALSE if not.
*/
public function isDecorated() {
return isset($this->inner);
}
}