Skip to content

Commit 5139b6b

Browse files
author
Cari Spruiell
committed
MAGETWO-37464: Merge and Fix Builds
- fix param ordering
1 parent b245b62 commit 5139b6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/User/Controller/Adminhtml/User/InvalidateToken.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ class InvalidateToken extends \Magento\User\Controller\Adminhtml\User
2828
* @param AdminTokenServiceInterface $tokenService
2929
*/
3030
public function __construct(
31-
AdminTokenServiceInterface $tokenService,
3231
\Magento\Backend\App\Action\Context $context,
3332
\Magento\Framework\Registry $coreRegistry,
34-
\Magento\User\Model\UserFactory $userFactory
33+
\Magento\User\Model\UserFactory $userFactory,
34+
AdminTokenServiceInterface $tokenService
3535
) {
3636
parent::__construct($context, $coreRegistry, $userFactory);
3737
$this->tokenService = $tokenService;

0 commit comments

Comments
 (0)