Skip to content

Commit 3cffac6

Browse files
Fixed static test failures
1 parent 6660a7d commit 3cffac6

File tree

1 file changed

+5
-0
lines changed
  • app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping

1 file changed

+5
-0
lines changed

app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping/State.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
// phpcs:ignore CookieAndSessionMisuse
67
namespace Magento\Multishipping\Model\Checkout\Type\Multishipping;
78

89
use Magento\Checkout\Model\Session;
@@ -178,27 +179,31 @@ public function unsCompleteStep($step)
178179
*/
179180
public function canSelectAddresses()
180181
{
182+
return false;
181183
}
182184

183185
/**
184186
* @return bool
185187
*/
186188
public function canInputShipping()
187189
{
190+
return false;
188191
}
189192

190193
/**
191194
* @return bool
192195
*/
193196
public function canSeeOverview()
194197
{
198+
return false;
195199
}
196200

197201
/**
198202
* @return bool
199203
*/
200204
public function canSuccess()
201205
{
206+
return false;
202207
}
203208

204209
// phpcs:enable

0 commit comments

Comments
 (0)