Skip to content
Snippets Groups Projects
Commit 28b11f7d authored by Rodrigue Tusse's avatar Rodrigue Tusse
Browse files

Coding standard fix.

parent be45474d
Branches 8.x-1.x
No related tags found
No related merge requests found
......@@ -15,7 +15,18 @@ use Drupal\Core\Entity\EntityTypeManagerInterface;
*/
class SettingsForm extends ConfigFormBase {
/**
* A logger instance.
*
* @var \Drupal\Core\Logger\LoggerChannelFactoryInterface
*/
protected $loggerChannelFactory;
/**
* An entity type manager instance.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
......
......@@ -23,9 +23,32 @@ class InactiveUsersHandler {
const FORM_SETTINGS_CONFIG_OBJ_NAME = "block_inactive_users.settings";
const LOGGER_CHANNEL = "block_inactive_users";
/**
* A config factory service.
*
* @var \Drupal\Core\Config\ConfigFactoryInterface
*/
protected $configFactoryService;
/**
* A logger instance.
*
* @var \Drupal\Core\Logger\LoggerChannelFactoryInterface
*/
protected $logger;
/**
* An language manager instance.
*
* @var \Drupal\Core\Language\LanguageManagerInterface
*/
protected $languageManager;
/**
* A time service.
*
* @var \Drupal\Component\Datetime\TimeInterface
*/
protected $timeService;
/**
......
......@@ -15,9 +15,32 @@ class InactiveUsersHandlerTest extends UnitTestCase {
const FORM_SETTINGS_CONFIG_OBJ_NAME = "block_inactive_users.settings";
const LOGGER_CHANNEL = "block_inactive_users";
/**
* A config factory service.
*
* @var \Drupal\Core\Config\ConfigFactoryInterface
*/
protected $configFactoryService;
/**
* A logger instance.
*
* @var \Drupal\Core\Logger\LoggerChannelFactoryInterface
*/
protected $logger;
/**
* An language manager instance.
*
* @var \Drupal\Core\Language\LanguageManagerInterface
*/
protected $languageManager;
/**
* A time service.
*
* @var \Drupal\Component\Datetime\TimeInterface
*/
protected $timeService;
/**
......
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