Skip to content

Commit 77135cf

Browse files
committed
Fis Static Tests
1 parent 987b162 commit 77135cf

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

app/code/Magento/Catalog/Model/CategoryLink.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,20 @@ class CategoryLink extends AbstractExtensibleModel implements CategoryLinkInterf
2424
*/
2525
public function getPosition()
2626
{
27-
return $this->_get(self::KEY_POSITION);
27+
return $this->getData(self::KEY_POSITION);
2828
}
2929

3030
/**
3131
* @inheritdoc
3232
*/
3333
public function getCategoryId()
3434
{
35-
return $this->_get(self::KEY_CATEGORY_ID);
35+
return $this->getData(self::KEY_CATEGORY_ID);
3636
}
3737

3838
/**
39+
* {@inheritDoc}
40+
*
3941
* @param int $position
4042
* @return $this
4143
*/
@@ -56,7 +58,7 @@ public function setCategoryId($categoryId)
5658
}
5759

5860
/**
59-
* @inheritdoc
61+
* {@inheritdoc}
6062
*
6163
* @return \Magento\Catalog\Api\Data\CategoryLinkExtensionInterface|null
6264
*/
@@ -66,7 +68,7 @@ public function getExtensionAttributes()
6668
}
6769

6870
/**
69-
* @inheritdoc
71+
* {@inheritdoc}
7072
*
7173
* @param \Magento\Catalog\Api\Data\CategoryLinkExtensionInterface $extensionAttributes
7274
* @return $this

0 commit comments

Comments
 (0)