Skip to content

Commit d4795df

Browse files
authored
Fix phpcs
1 parent e462adc commit d4795df

File tree

1 file changed

+7
-5
lines changed
  • app/code/Magento/Ui/Controller/Adminhtml/Bookmark

1 file changed

+7
-5
lines changed

app/code/Magento/Ui/Controller/Adminhtml/Bookmark/Save.php

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
declare(strict_types=1);
7+
68
namespace Magento\Ui\Controller\Adminhtml\Bookmark;
79

810
use Magento\Authorization\Model\UserContextInterface;
@@ -258,11 +260,11 @@ private function updateCurrentBookmarkConfig(array $data): void
258260

259261
/**
260262
* Check if the positions for identical filters has changed
261-
*/*
262-
* @param array $existingConfig The existing configuration
263-
* @param array $currentConfig The current configuration
264-
* @return bool True if positions have changed, false otherwise
265-
*/
263+
*
264+
* @param array $existingConfig The existing configuration
265+
* @param array $currentConfig The current configuration
266+
* @return bool True if positions have changed, false otherwise
267+
*/
266268
private function isPositionChanged(array $existingConfig, array $currentConfig): bool
267269
{
268270
foreach (['filters', 'positions'] as $key) {

0 commit comments

Comments
 (0)