InjectedService.php

Same filename in other branches
  1. 9 core/modules/system/tests/modules/new_dependency_test/src/InjectedService.php
  2. 8.9.x core/modules/system/tests/modules/new_dependency_test/src/InjectedService.php
  3. 11.x core/modules/system/tests/modules/new_dependency_test/src/InjectedService.php

Namespace

Drupal\new_dependency_test

File

core/modules/system/tests/modules/new_dependency_test/src/InjectedService.php

View source
<?php

namespace Drupal\new_dependency_test;

use Drupal\new_dependency_test_with_service\NewService;

/**
 * Generic service with a dependency on a service defined in a new module.
 */
class InjectedService {
    
    /**
     * The injected service.
     *
     * @var \Drupal\new_dependency_test_with_service\NewService
     */
    protected $service;
    
    /**
     * InjectedService constructor.
     *
     * @param \Drupal\new_dependency_test_with_service\NewService $service
     *   The service of the new module.
     */
    public function __construct(NewService $service) {
        $this->service = $service;
    }
    
    /**
     * Get the simple greeting from the service.
     *
     * @return string
     *   The greeting.
     */
    public function greet() {
        return $this->service
            ->greet();
    }

}

Classes

Title Deprecated Summary
InjectedService Generic service with a dependency on a service defined in a new module.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.