Skip to content

Commit 2b8ca36

Browse files
committed
ACP2E-3862: Partial update of copyrights for CE for file types 'php', 'phtml', 'html', 'js'
1 parent 43b7412 commit 2b8ca36

File tree

31 files changed

+69
-47
lines changed

31 files changed

+69
-47
lines changed

app/code/Magento/AdminNotification/Block/Inbox.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
class Inbox extends \Magento\Backend\Block\Widget\Grid\Container
1313
{
1414
/**
15-
* @inheridoc
15+
* @inheritdoc
1616
*/
1717
protected function _construct()
1818
{

app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/Index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class Index extends \Magento\AdminNotification\Controller\Adminhtml\Notification implements HttpGetActionInterface
1111
{
1212
/**
13-
* @inheridoc
13+
* @inheritdoc
1414
*/
1515
public function execute()
1616
{

app/code/Magento/AdminNotification/Controller/Adminhtml/System/Message/ListAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function __construct(
4444
}
4545

4646
/**
47-
* @inheridoc
47+
* @inheritdoc
4848
*/
4949
public function execute()
5050
{

app/code/Magento/AdminNotification/Model/Config/Source/Frequency.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
class Frequency implements \Magento\Framework\Option\ArrayInterface
1616
{
1717
/**
18-
* @inheridoc
18+
* @inheritdoc
1919
*/
2020
public function toOptionArray()
2121
{

app/code/Magento/AdminNotification/Model/Inbox.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
class Inbox extends \Magento\Framework\Model\AbstractModel implements NotifierInterface, InboxInterface
3434
{
3535
/**
36-
* @inheridoc
36+
* @inheritdoc
3737
*/
3838
protected function _construct()
3939
{

app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/Critical.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ protected function _construct()
2525
}
2626

2727
/**
28-
* @inheridoc
28+
* @inheritdoc
2929
*/
3030
protected function _initSelect()
3131
{

app/code/Magento/AdminNotification/Model/System/Message.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class Message extends \Magento\Framework\Model\AbstractModel implements \Magento\Framework\Notification\MessageInterface
1414
{
1515
/**
16-
* @inheridoc
16+
* @inheritdoc
1717
*/
1818
protected function _construct()
1919
{

app/code/Magento/AdvancedSearch/Block/SearchData.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,31 +53,31 @@ public function __construct(
5353
}
5454

5555
/**
56-
* {@inheritdoc}
56+
* @inheritdoc
5757
*/
5858
public function getItems()
5959
{
6060
return $this->searchDataProvider->getItems($this->query);
6161
}
6262

6363
/**
64-
* {@inheritdoc}
64+
* @inheritdoc
6565
*/
6666
public function isShowResultsCount()
6767
{
6868
return $this->searchDataProvider->isResultsCountEnabled();
6969
}
7070

7171
/**
72-
* {@inheritdoc}
72+
* @inheritdoc
7373
*/
7474
public function getLink($queryText)
7575
{
7676
return $this->getUrl('*/*/') . '?q=' . urlencode($queryText);
7777
}
7878

7979
/**
80-
* {@inheritdoc}
80+
* @inheritdoc
8181
*/
8282
public function getTitle()
8383
{

app/code/Magento/AdvancedSearch/Block/SearchDataInterface.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,23 @@ interface SearchDataInterface
2222
public function getItems();
2323

2424
/**
25+
* Check is need to show number of results
26+
*
2527
* @return bool
2628
*/
2729
public function isShowResultsCount();
2830

2931
/**
32+
* Retrieve link
33+
*
3034
* @param string $queryText
3135
* @return string
3236
*/
3337
public function getLink($queryText);
3438

3539
/**
40+
* Retrieve title
41+
*
3642
* @return string
3743
*/
3844
public function getTitle();

app/code/Magento/AdvancedSearch/Model/Adapter/DataMapper/AdditionalFieldsProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function __construct(array $fieldsProviders)
2525
}
2626

2727
/**
28-
* {@inheritdoc}
28+
* @inheritdoc
2929
*/
3030
public function getFields(array $productIds, $storeId)
3131
{

0 commit comments

Comments
 (0)