Issue #2327455 by marvil07: Fixed Typo in services example use at core.api.php.
parent
eb21fc37a7
commit
88c03db8b5
|
@ -700,9 +700,9 @@
|
||||||
* generic method to access any service. Examples:
|
* generic method to access any service. Examples:
|
||||||
* @code
|
* @code
|
||||||
* // Retrieve the entity.manager service object (special method exists).
|
* // Retrieve the entity.manager service object (special method exists).
|
||||||
* $manager = \Drupal->entityManager();
|
* $manager = \Drupal::entityManager();
|
||||||
* // Retrieve the service object for machine name 'foo.bar'.
|
* // Retrieve the service object for machine name 'foo.bar'.
|
||||||
* $foobar = \Drupal->service('foo.bar');
|
* $foobar = \Drupal::service('foo.bar');
|
||||||
* @endcode
|
* @endcode
|
||||||
*
|
*
|
||||||
* As a note, you should always use dependency injection (via service arguments
|
* As a note, you should always use dependency injection (via service arguments
|
||||||
|
|
Loading…
Reference in New Issue