File tree Expand file tree Collapse file tree 3 files changed +12
-8
lines changed
app/code/Magento/Deploy/Model/Plugin
lib/internal/Magento/Framework Expand file tree Collapse file tree 3 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,12 @@ class ConfigChangeDetector
3030 */
3131 private $ changeDetector ;
3232
33- private DeploymentConfig $ deploymentConfig ;
33+ /** @var DeploymentConfig */
34+ private $ deploymentConfig ;
3435
3536 /**
36- * @param ChangeDetector $changeDetector configuration data changes detector
37+ * @param ChangeDetector $changeDetector
38+ * @param DeploymentConfig $deploymentConfig
3739 */
3840 public function __construct (ChangeDetector $ changeDetector , DeploymentConfig $ deploymentConfig )
3941 {
Original file line number Diff line number Diff line change @@ -52,7 +52,9 @@ class RemoteSynchronizedCache extends \Zend_Cache_Backend implements \Zend_Cache
5252 private const REMOTE_SYNC_LOCK_PREFIX = 'rsl:: ' ;
5353
5454 /**
55- * @inheritdoc
55+ * Available options
56+ *
57+ * @var array available options
5658 */
5759 protected $ _options = [
5860 'remote_backend ' => '' ,
@@ -77,7 +79,7 @@ class RemoteSynchronizedCache extends \Zend_Cache_Backend implements \Zend_Cache
7779 /**
7880 * Sign for locks, helps to avoid removing a lock that was created by another client
7981 *
80- * @string
82+ * @var string
8183 */
8284 private $ lockSign ;
8385
@@ -414,9 +416,6 @@ private function unlock(string $id): bool
414416
415417 /**
416418 * Calculate lock name.
417- *
418- * @param string $id
419- * @return string
420419 */
421420 private function getLockName (string $ id ): string
422421 {
Original file line number Diff line number Diff line change @@ -30,7 +30,10 @@ class DbStatusValidator
3030 */
3131 private $ dbVersionInfo ;
3232
33- private DeploymentConfig $ deploymentConfig ;
33+ /**
34+ * @var DeploymentConfig
35+ */
36+ private $ deploymentConfig ;
3437
3538 /**
3639 * @param FrontendCacheInterface $cache
You can’t perform that action at this time.
0 commit comments