Skip to content

Commit c33c0c2

Browse files
committed
MC-1439: Define API & SPI and mark accordingly
1 parent cc9c54a commit c33c0c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/code/Magento/PageBuilder/Setup/DataConverter/ConfigurableEavAttributeLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function __construct(
5050
/**
5151
* @inheritdoc
5252
*/
53-
public function load(int $entityId) : array
53+
public function load($entityId) : array
5454
{
5555
$eavData = [];
5656
$entity = $this->entityFactory->create();

app/code/Magento/PageBuilder/Setup/DataConverter/EavAttributeLoaderInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ interface EavAttributeLoaderInterface
2323
* @return array
2424
* @throws NoSuchEntityException
2525
*/
26-
public function load(int $entityId) : array;
26+
public function load($entityId) : array;
2727
}

0 commit comments

Comments
 (0)