Skip to content

Commit 2a00378

Browse files
committed
Fix formatting
1 parent c241e11 commit 2a00378

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

app/code/Magento/Deploy/Model/Plugin/ConfigChangeDetector.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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
{

lib/internal/Magento/Framework/Cache/Backend/RemoteSynchronizedCache.php

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff 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
{

lib/internal/Magento/Framework/Module/Plugin/DbStatusValidator.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)