Skip to content

Commit 719d340

Browse files
committed
ACPT-1219: Fix Static Tests failures for application-Server PR
1 parent bab5d1c commit 719d340

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

lib/internal/Magento/Framework/Cache/Core.php

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,7 @@ protected function _tags($tags)
5353
}
5454

5555
/**
56-
* Save some data in a cache
57-
*
58-
* @param mixed $data Data to put in cache (can be another type than string if automatic_serialization is on)
59-
* @param null|string $cacheId Cache id (if not set, the last cache id will be used)
60-
* @param string[] $tags Cache tags
61-
* @param bool|int $specificLifetime If != false, set a specific lifetime for this cache record (null => infinite lifetime)
62-
* @param int $priority integer between 0 (very low priority) and 10 (maximum priority) used by some particular backends
63-
* @return bool True if no problem
56+
* @inheritDoc
6457
*/
6558
public function save($data, $cacheId = null, $tags = [], $specificLifetime = false, $priority = 8)
6659
{

lib/internal/Magento/Framework/ObjectManager/ObjectManager.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,9 @@ class ObjectManager implements \Magento\Framework\ObjectManagerInterface
3434
protected $_config;
3535

3636
/**
37-
*
3837
* @param FactoryInterface $factory
3938
* @param ConfigInterface $config
40-
* @param array &$sharedInstances
39+
* @param array $sharedInstances
4140
*/
4241
public function __construct(FactoryInterface $factory, ConfigInterface $config, array &$sharedInstances = [])
4342
{
@@ -76,8 +75,8 @@ public function get($type)
7675
}
7776

7877
/**
79-
*
8078
* Configure di instance
79+
*
8180
* Note: All arguments should be pre-processed (sort order, translations, etc) before passing to method configure.
8281
*
8382
* @param array $configuration

lib/internal/Magento/Framework/Session/SessionManager.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,10 @@ public function start()
208208
}
209209

210210
/**
211-
*
212211
* @return void
213212
*/
214-
public function registerShutdown() {
213+
public function registerShutdown()
214+
{
215215
register_shutdown_function([$this, 'writeClose']);
216216
}
217217

0 commit comments

Comments
 (0)