Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement ActionInterface for wishlist/shared #27494

Merged
merged 20 commits into from
Aug 24, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
conflicts resolved; Merge branch '2.4-develop' into refactor/wishlist
# Conflicts:
#	app/code/Magento/Wishlist/Test/Unit/Controller/Shared/AllcartTest.php
#	app/code/Magento/Wishlist/Test/Unit/Controller/Shared/CartTest.php
Rudolf Vince committed May 13, 2020
commit 935bdfae05c5637a4d056368090090f0edc1dd15
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Wishlist\Test\Unit\Controller\Shared;

Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Wishlist\Test\Unit\Controller\Shared;

@@ -86,7 +87,7 @@ class CartTest extends TestCase
protected $product;

// phpcs:ignore Generic.Files.LineLength.TooLong
protected function setUp()
protected function setUp(): void
{
$this->request = $this->getMockBuilder(RequestInterface::class)
->getMockForAbstractClass();
You are viewing a condensed version of this merge commit. You can view the full changes here.