Skip to content
Snippets Groups Projects
Commit 5a3e43f8 authored by Viktor Holovachek's avatar Viktor Holovachek Committed by Adriano Cori
Browse files

Issue #3398335 by AstonVictor: Incorrect cases in PrevNextService service

3398335 - Fix camel case
parent 3d57b15e
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ class PrevNextService implements PrevNextServiceInterface {
/**
* The entity type manager.
*
* @var Drupal\Core\Entity\EntityTypeManagerInterface
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
......@@ -29,11 +29,11 @@ class PrevNextService implements PrevNextServiceInterface {
/**
* PrevNextService constructor.
*
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager instance.
*/
public function __construct(EntityTypeManagerInterface $entityTypeManager) {
$this->entityTypeManager = $entityTypeManager;
public function __construct(EntityTypeManagerInterface $entity_type_manager) {
$this->entityTypeManager = $entity_type_manager;
}
/**
......
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