Skip to content

Commit 1862d2c

Browse files
authored
ENGCOM-3243: Write intercepted mapping to generated/metadata during compilation #18648
- Fixed docblock
1 parent 4c495f2 commit 1862d2c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

dev/tests/integration/testsuite/Magento/Framework/Interception/AbstractPlugin.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,35 @@
77

88
/**
99
* Class GeneralTest
10+
*
1011
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
1112
*/
1213
abstract class AbstractPlugin extends \PHPUnit\Framework\TestCase
1314
{
1415
/**
16+
* Config reader
17+
*
1518
* @var \PHPUnit_Framework_MockObject_MockObject
1619
*/
1720
protected $_configReader;
1821

1922
/**
23+
* Object Manager
24+
*
2025
* @var \Magento\Framework\ObjectManagerInterface
2126
*/
2227
protected $_objectManager;
2328

2429
/**
30+
* Applicartion Object Manager
31+
*
2532
* @var \Magento\Framework\ObjectManagerInterface
2633
*/
2734
private $applicationObjectManager;
2835

36+
/**
37+
* Set up
38+
*/
2939
public function setUp()
3040
{
3141
if (!$this->_objectManager) {
@@ -36,11 +46,17 @@ public function setUp()
3646
\Magento\Framework\App\ObjectManager::setInstance($this->_objectManager);
3747
}
3848

49+
/**
50+
* Tear down
51+
*/
3952
public function tearDown()
4053
{
4154
\Magento\Framework\App\ObjectManager::setInstance($this->applicationObjectManager);
4255
}
4356

57+
/**
58+
* Set up Interception Config
59+
*/
4460
public function setUpInterceptionConfig($pluginConfig)
4561
{
4662
$config = new \Magento\Framework\Interception\ObjectManager\Config\Developer();

0 commit comments

Comments
 (0)