Skip to content
Snippets Groups Projects

Issue #3348295: Deprecated function: Creation of dynamic property Drupal\lockr\SecretInfo::$secretStorage is deprecated

Closed Issue #3348295: Deprecated function: Creation of dynamic property Drupal\lockr\SecretInfo::$secretStorage is deprecated
1 file
+ 10
3
Compare changes
  • Side-by-side
  • Inline
+ 10
3
@@ -4,7 +4,7 @@ namespace Drupal\lockr;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\key\KeyRepositoryInterface;
use Lockr\SecretInfoInterface;
@@ -16,14 +16,21 @@ class SecretInfo implements SecretInfoInterface {
/**
* Simple config factory.
*
* @var ConfigFactoryInterface
* @var Drupal\Core\Config\ConfigFactoryInterface $configFactory
*/
protected $configFactory;
/**
* Secret Storage.
*
* @var Drupal\Core\Entity\EntityStorageInterface $secretStorage
*/
protected $secretStorage;
/**
* Key repository.
*
* @var KeyRepositoryInterface
* @var Drupal\key\KeyRepositoryInterface $keyRepository
*/
protected $keyRepository;
Loading