File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
dev/tests/integration/testsuite/Magento/Paypal Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ class ExpressTest extends \Magento\TestFramework\TestCase\AbstractController
23
23
/**
24
24
* @magentoDataFixture Magento/Sales/_files/quote.php
25
25
* @magentoDataFixture Magento/Paypal/_files/quote_payment.php
26
+ * @return void
26
27
*/
27
28
public function testReviewAction ()
28
29
{
@@ -45,6 +46,7 @@ public function testReviewAction()
45
46
/**
46
47
* @magentoDataFixture Magento/Paypal/_files/quote_payment_express.php
47
48
* @magentoConfigFixture current_store paypal/general/business_account merchant_2012050718_biz@example.com
49
+ * @return void
48
50
*/
49
51
public function testCancelAction ()
50
52
{
@@ -82,6 +84,7 @@ public function testCancelAction()
82
84
*
83
85
* @magentoDataFixture Magento/Sales/_files/quote.php
84
86
* @magentoDataFixture Magento/Customer/_files/customer.php
87
+ * @return void
85
88
*/
86
89
public function testStartActionCustomerToQuote ()
87
90
{
@@ -143,6 +146,7 @@ public function testStartActionCustomerToQuote()
143
146
* @magentoDataFixture Magento/Paypal/_files/quote_express_configurable.php
144
147
* @magentoDbIsolation enabled
145
148
* @magentoAppIsolation enabled
149
+ * @return void
146
150
*/
147
151
public function testReturnAction ()
148
152
{
Original file line number Diff line number Diff line change 13
13
14
14
require __DIR__ . '/../../../Magento/ConfigurableProduct/_files/product_configurable.php ' ;
15
15
16
- /** @var $objectManager \Magento\TestFramework\ObjectManager */
16
+ /** @var \Magento\TestFramework\ObjectManager $objectManager */
17
17
$ objectManager = Bootstrap::getObjectManager ();
18
18
19
19
/** @var \Magento\Catalog\Model\Product $product */
20
20
/** @var \Magento\Catalog\Model\ResourceModel\Eav\Attribute $attribute */
21
21
$ productRepository = $ objectManager ->create (ProductRepositoryInterface::class);
22
22
$ product = $ productRepository ->get ('configurable ' );
23
23
24
- /** @var $options Collection */
24
+ /** @var Collection $options */
25
25
$ options = $ objectManager ->create (Collection::class);
26
26
$ option = $ options ->setAttributeFilter ($ attribute ->getId ())->getFirstItem ();
27
27
You can’t perform that action at this time.
0 commit comments