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
30
30
*/
31
31
private $ changeDetector ;
32
32
33
- private DeploymentConfig $ deploymentConfig ;
33
+ /** @var DeploymentConfig */
34
+ private $ deploymentConfig ;
34
35
35
36
/**
36
- * @param ChangeDetector $changeDetector configuration data changes detector
37
+ * @param ChangeDetector $changeDetector
38
+ * @param DeploymentConfig $deploymentConfig
37
39
*/
38
40
public function __construct (ChangeDetector $ changeDetector , DeploymentConfig $ deploymentConfig )
39
41
{
Original file line number Diff line number Diff line change @@ -52,7 +52,9 @@ class RemoteSynchronizedCache extends \Zend_Cache_Backend implements \Zend_Cache
52
52
private const REMOTE_SYNC_LOCK_PREFIX = 'rsl:: ' ;
53
53
54
54
/**
55
- * @inheritdoc
55
+ * Available options
56
+ *
57
+ * @var array available options
56
58
*/
57
59
protected $ _options = [
58
60
'remote_backend ' => '' ,
@@ -77,7 +79,7 @@ class RemoteSynchronizedCache extends \Zend_Cache_Backend implements \Zend_Cache
77
79
/**
78
80
* Sign for locks, helps to avoid removing a lock that was created by another client
79
81
*
80
- * @string
82
+ * @var string
81
83
*/
82
84
private $ lockSign ;
83
85
@@ -414,9 +416,6 @@ private function unlock(string $id): bool
414
416
415
417
/**
416
418
* Calculate lock name.
417
- *
418
- * @param string $id
419
- * @return string
420
419
*/
421
420
private function getLockName (string $ id ): string
422
421
{
Original file line number Diff line number Diff line change @@ -30,7 +30,10 @@ class DbStatusValidator
30
30
*/
31
31
private $ dbVersionInfo ;
32
32
33
- private DeploymentConfig $ deploymentConfig ;
33
+ /**
34
+ * @var DeploymentConfig
35
+ */
36
+ private $ deploymentConfig ;
34
37
35
38
/**
36
39
* @param FrontendCacheInterface $cache
You can’t perform that action at this time.
0 commit comments