Skip to content

Commit b2d2b0a

Browse files
committed
Merge branch 'develop' into L3-PR-2022-04-19
2 parents 9e94c9b + 016088a commit b2d2b0a

22 files changed

+54
-5
lines changed

app/code/Magento/PageBuilder/Api/Data/TemplateInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
/**
1212
* Template Manager template interface
13+
*
14+
* @api
1315
*/
1416
interface TemplateInterface extends ExtensibleDataInterface
1517
{

app/code/Magento/PageBuilder/Api/Data/TemplateSearchResultsInterface.php

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

99
use Magento\Framework\Api\SearchResultsInterface;
1010

11+
/**
12+
* @api
13+
*/
1114
interface TemplateSearchResultsInterface extends SearchResultsInterface
1215
{
1316
/**

app/code/Magento/PageBuilder/Api/TemplateRepositoryInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
use Magento\Framework\Exception\LocalizedException;
1313
use Magento\Framework\Exception\NoSuchEntityException;
1414

15+
/**
16+
* @api
17+
*/
1518
interface TemplateRepositoryInterface
1619
{
1720
/**

app/code/Magento/PageBuilder/Block/Adminhtml/System/Config/SwitchAttributeType.php

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,23 @@
88

99
namespace Magento\PageBuilder\Block\Adminhtml\System\Config;
1010

11+
use Magento\Backend\Block\Template\Context;
12+
use Magento\Config\Block\System\Config\Form\Field;
13+
use Magento\Framework\Phrase;
14+
1115
/**
1216
* Class SwitchAttributeType renders modal window to confirm changing attribute type
1317
*
18+
* @api
1419
*/
15-
class SwitchAttributeType extends \Magento\Config\Block\System\Config\Form\Field
20+
class SwitchAttributeType extends Field
1621
{
1722
/**
18-
* @param \Magento\Backend\Block\Template\Context $context
23+
* @param Context $context
1924
* @param array $data
2025
*/
2126
public function __construct(
22-
\Magento\Backend\Block\Template\Context $context,
27+
Context $context,
2328
array $data = []
2429
) {
2530
parent::__construct($context, $data);
@@ -38,9 +43,9 @@ public function getModalSelector() : string
3843
/**
3944
* Get text for the modal title heading when user switches to disable
4045
*
41-
* @return \Magento\Framework\Phrase
46+
* @return Phrase
4247
*/
43-
public function getModalTitleText() : \Magento\Framework\Phrase
48+
public function getModalTitleText() : Phrase
4449
{
4550
return __('Product data may be lost');
4651
}

app/code/Magento/PageBuilder/Model/Catalog/Sorting/OptionInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
/**
1212
* Interface OptionInterface
13+
*
14+
* @api
1315
*/
1416
interface OptionInterface
1517
{

app/code/Magento/PageBuilder/Model/Dom/Adapter/AttrInterface.php

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

1010
/**
1111
* Interface for Attr wrappers
12+
*
13+
* @api
1214
*/
1315
interface AttrInterface
1416
{

app/code/Magento/PageBuilder/Model/Dom/Adapter/CharacterDataInterface.php

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

1010
/**
1111
* Interface for CharacterData wrappers
12+
*
13+
* @api
1214
*/
1315
interface CharacterDataInterface
1416
{

app/code/Magento/PageBuilder/Model/Dom/Adapter/CommentInterface.php

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

1010
/**
1111
* Interface for Comment wrappers
12+
*
13+
* @api
1214
*/
1315
interface CommentInterface
1416
{

app/code/Magento/PageBuilder/Model/Dom/Adapter/DocumentFragmentInterface.php

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

1010
/**
1111
* Interface for DocumentFragment wrappers
12+
*
13+
* @api
1214
*/
1315
interface DocumentFragmentInterface
1416
{

app/code/Magento/PageBuilder/Model/Dom/Adapter/DocumentInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
/**
1414
* Interface for Document wrappers
15+
*
16+
* @api
1517
*/
1618
interface DocumentInterface
1719
{

0 commit comments

Comments
 (0)