Skip to content
Snippets Groups Projects
Commit 83171724 authored by Alex Bronstein's avatar Alex Bronstein
Browse files

Issue #3021803 by alexpott, AaronBauman, effulgentsia, longwave, dawehner,...

Issue #3021803 by alexpott, AaronBauman, effulgentsia, longwave, dawehner, larowlan, bradjones1, tim.plunkett, Berdir, joachim, mondrake, weaverryan, JParkinson1991, kim.pepper, louis-cuny, rodrigoaguilera: Document and add tests for service autowiring
parent 61ebd080
No related branches found
No related tags found
18 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!1896Issue #2940605: Can only intentionally re-render an entity with references 20 times,!1101Issue #2412669 by claudiu.cristea, Julfabre, sidharrell, catch, daffie,...,!1039Issue #2556069 by claudiu.cristea, bnjmnm, lauriii, pfrenssen, Tim Bozeman,...,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!1012Issue #3226887: Hreflang on non-canonical content pages,!872Draft: Issue #3221319: Race condition when creating menu links and editing content deletes menu links,!594Put each entity type table into a details element on admin/config/regional/content-language,!592Issue #2957953: Editing menus user-experience has regressed,!579Issue #2230909: Simple decimals fail to pass validation,!560Move callback classRemove outside of the loop,!555Issue #3202493,!512Issue #3207771: Menu UI node type form documentation points to non-existent function,!485Sets the autocomplete attribute for username/password input field on login form.,!449Issue #2784233: Allow multiple vocabularies in the taxonomy filter,!231Issue #2671162: summary text wysiwyg patch working fine on 9.2.0-dev,!43Resolve #3173180: Add UI for 'loading' html attribute to images,!30Issue #3182188: Updates composer usage to point at ./vendor/bin/composer
...@@ -852,6 +852,12 @@ ...@@ -852,6 +852,12 @@
* Services can also be defined dynamically, as in the * Services can also be defined dynamically, as in the
* \Drupal\Core\CoreServiceProvider class, but this is less common for modules. * \Drupal\Core\CoreServiceProvider class, but this is less common for modules.
* *
* @section sec_define Service autowiring
* Instead of specifying arguments explicitly, the container can also autowire
* a service's arguments from the constructor's type-hints. See
* @link https://symfony.com/doc/current/service_container/autowiring.html the Symfony documentation on defining services dependencies automatically @endlink
* for details.
*
* @section sec_tags Service tags * @section sec_tags Service tags
* Some services have tags, which are defined in the service definition. See * Some services have tags, which are defined in the service definition. See
* @link service_tag Service Tags @endlink for usage. * @link service_tag Service Tags @endlink for usage.
......
...@@ -110,6 +110,7 @@ autosave ...@@ -110,6 +110,7 @@ autosave
autosubmit autosubmit
autowire autowire
autowired autowired
autowiring
backend's backend's
backlink backlink
backlinks backlinks
......
name: 'Auto-wiring test'
type: module
description: 'Support module for auto-wiring testing.'
package: Testing
version: VERSION
services:
# Multiple services that implements TestInjectionInterface.
# These are marked private, because they are only intended to be used as
# dependencies injected into other services.
Drupal\autowire_test\TestInjection:
public: false
Drupal\autowire_test\TestInjection2:
public: false
# An alias that specifies which service to use by default for arguments that
# type-hint to the interface.
# This is marked private, because it is only intended to be used as a
# dependency injected into other services.
Drupal\autowire_test\TestInjectionInterface:
alias: 'Drupal\autowire_test\TestInjection'
public: false
# A service that tests autowiring for two constructor arguments:
# - One type-hinted to TestInjectionInterface.
# - One type-hinted to TestInjection2.
Drupal\autowire_test\TestService:
autowire: true
<?php
namespace Drupal\autowire_test;
/**
* A service that is autowired.
*/
class TestInjection implements TestInjectionInterface {
}
<?php
namespace Drupal\autowire_test;
/**
* A service that is autowired.
*/
class TestInjection2 {
}
<?php
namespace Drupal\autowire_test;
/**
* An interface for a service that is autowired.
*/
interface TestInjectionInterface {
}
<?php
namespace Drupal\autowire_test;
class TestService {
/**
* @var \Drupal\autowire_test\TestInjectionInterface
*/
protected $testInjection;
/**
* @var \Drupal\autowire_test\TestInjection2
*/
protected $testInjection2;
public function __construct(TestInjectionInterface $test_injection, TestInjection2 $test_injection2) {
$this->testInjection = $test_injection;
$this->testInjection2 = $test_injection2;
}
public function getTestInjection(): TestInjectionInterface {
return $this->testInjection;
}
public function getTestInjection2(): TestInjection2 {
return $this->testInjection2;
}
}
<?php
namespace Drupal\KernelTests\Core\DependencyInjection;
use Drupal\autowire_test\TestInjection;
use Drupal\autowire_test\TestInjection2;
use Drupal\autowire_test\TestService;
use Drupal\KernelTests\KernelTestBase;
/**
* Tests auto-wiring services.
*
* @group DependencyInjection
*/
class AutowireTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = ['autowire_test'];
/**
* Tests that 'autowire_test.service' has its dependencies injected.
*/
public function testAutowire(): void {
// Ensure an autowired interface works.
$this->assertInstanceOf(TestInjection::class, $this->container->get(TestService::class)->getTestInjection());
// Ensure an autowired class works.
$this->assertInstanceOf(TestInjection2::class, $this->container->get(TestService::class)->getTestInjection2());
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment