Skip to content

Commit 2867a11

Browse files
committed
#10320: Remove zend json from the test suite
- Attempt to reduce coupling between objects
1 parent 1ad0251 commit 2867a11

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

dev/tests/integration/framework/Magento/TestFramework/TestCase/AbstractController.php

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
/**
1717
* @SuppressWarnings(PHPMD.NumberOfChildren)
18-
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
1918
*/
2019
abstract class AbstractController extends \PHPUnit_Framework_TestCase
2120
{
@@ -26,12 +25,12 @@ abstract class AbstractController extends \PHPUnit_Framework_TestCase
2625
protected $_runOptions = [];
2726

2827
/**
29-
* @var \Magento\TestFramework\Request
28+
* @var \Magento\Framework\App\RequestInterface
3029
*/
3130
protected $_request;
3231

3332
/**
34-
* @var \Magento\TestFramework\Response
33+
* @var \Magento\Framework\App\ResponseInterface
3534
*/
3635
protected $_response;
3736

@@ -103,7 +102,7 @@ public function dispatch($uri)
103102
/**
104103
* Request getter
105104
*
106-
* @return \Magento\TestFramework\Request
105+
* @return \Magento\Framework\App\RequestInterface
107106
*/
108107
public function getRequest()
109108
{
@@ -116,7 +115,7 @@ public function getRequest()
116115
/**
117116
* Response getter
118117
*
119-
* @return \Magento\TestFramework\Response
118+
* @return \Magento\Framework\App\ResponseInterface
120119
*/
121120
public function getResponse()
122121
{

0 commit comments

Comments
 (0)