Skip to content

Commit 88772d5

Browse files
committed
Codding styles improvements
1 parent 33bc5e2 commit 88772d5

30 files changed

+202
-244
lines changed

Api/BreezeThemeDetectionInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,4 @@ interface BreezeThemeDetectionInterface
1616
* @return bool
1717
*/
1818
public function execute($storeId = null): bool;
19-
2019
}
Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
<?php
2-
/**
3-
* Copyright © Magefan ([email protected]). All rights reserved.
4-
* Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement).
5-
*/
6-
7-
namespace Magefan\Community\Api;
8-
9-
/**
10-
* Return parent ids by child ids
11-
*
12-
* @api
13-
* @since 2.1.19
14-
*/
15-
interface GetParentProductIdsInterface
16-
{
17-
/**
18-
* @api
19-
* @param array $productIds
20-
* @return array
21-
*/
22-
public function execute(array $productIds) : array;
23-
}
1+
<?php
2+
/**
3+
* Copyright © Magefan ([email protected]). All rights reserved.
4+
* Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement).
5+
*/
6+
7+
namespace Magefan\Community\Api;
8+
9+
/**
10+
* Return parent ids by child ids
11+
*
12+
* @api
13+
* @since 2.1.19
14+
*/
15+
interface GetParentProductIdsInterface
16+
{
17+
/**
18+
* @api
19+
* @param array $productIds
20+
* @return array
21+
*/
22+
public function execute(array $productIds) : array;
23+
}

Api/GetWebsitesMapInterface.php

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
<?php
2-
/**
3-
* Copyright © Magefan ([email protected]). All rights reserved.
4-
* Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement).
5-
*/
6-
7-
namespace Magefan\Community\Api;
8-
9-
/**
10-
* Return Websites Map
11-
*
12-
* @api
13-
* @since 2.1.19
14-
*/
15-
interface GetWebsitesMapInterface
16-
{
17-
/**
18-
* @api
19-
* @return array
20-
*/
21-
public function execute() : array;
22-
}
1+
<?php
2+
/**
3+
* Copyright © Magefan ([email protected]). All rights reserved.
4+
* Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement).
5+
*/
6+
7+
namespace Magefan\Community\Api;
8+
9+
/**
10+
* Return Websites Map
11+
*
12+
* @api
13+
* @since 2.1.19
14+
*/
15+
interface GetWebsitesMapInterface
16+
{
17+
/**
18+
* @api
19+
* @return array
20+
*/
21+
public function execute() : array;
22+
}

Api/HyvaThemeDetectionInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,4 @@ interface HyvaThemeDetectionInterface
1616
* @return bool
1717
*/
1818
public function execute($storeId = null): bool;
19-
2019
}

Api/SecureHtmlRendererInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,4 @@ public function renderTag(
2525
?string $content = null,
2626
bool $textContent = true
2727
);
28-
2928
}

Block/Adminhtml/Edit/BackButton.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88

99
use Magento\Framework\View\Element\UiComponent\Control\ButtonProviderInterface;
1010

11-
/**
12-
* Class BackButton
13-
*/
1411
class BackButton extends GenericButton implements ButtonProviderInterface
1512
{
1613
/**

Block/Adminhtml/Edit/DeleteButton.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88

99
use Magento\Framework\View\Element\UiComponent\Control\ButtonProviderInterface;
1010

11-
/**
12-
* Class DeleteButton
13-
*/
1411
class DeleteButton extends GenericButton implements ButtonProviderInterface
1512
{
1613

Block/Adminhtml/Edit/DuplicateButton.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88

99
use Magento\Framework\View\Element\UiComponent\Control\ButtonProviderInterface;
1010

11-
/**
12-
* Class DuplicateButton
13-
*/
1411
class DuplicateButton extends GenericButton implements ButtonProviderInterface
1512
{
1613
/**

Block/Adminhtml/Edit/GenericButton.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
use Magento\Framework\Exception\NoSuchEntityException;
1111
use Magento\Framework\AuthorizationInterface;
1212

13-
/**
14-
* Class GenericButton
15-
*/
1613
class GenericButton
1714
{
1815
/**

Block/Adminhtml/Edit/PreviewButton.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88

99
use Magento\Framework\View\Element\UiComponent\Control\ButtonProviderInterface;
1010

11-
/**
12-
* Class PreviewButton
13-
*/
1411
class PreviewButton extends GenericButton implements ButtonProviderInterface
1512
{
1613
/**

0 commit comments

Comments
 (0)