Skip to content

Commit aa5bc4f

Browse files
author
Mohammad HAJ SALEM
committed
👌 shortening variable name
1 parent 944adbf commit aa5bc4f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/code/Magento/Catalog/Model/Product/Link/SaveHandler.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class SaveHandler
1818
/**
1919
* @var ProductLinkRepositoryInterface
2020
*/
21-
protected $productLinkRepository;
21+
protected $productLinkRepo;
2222

2323
/**
2424
* @var MetadataPool
@@ -39,19 +39,19 @@ class SaveHandler
3939
* SaveHandler constructor.
4040
* @param MetadataPool $metadataPool
4141
* @param Link $linkResource
42-
* @param ProductLinkRepositoryInterface $productLinkRepository
42+
* @param ProductLinkRepositoryInterface $productLinkRepo
4343
* @param \Magento\Catalog\Model\Product\LinkTypeProvider $linkTypeProvider
4444
*/
4545
public function __construct(
4646
MetadataPool $metadataPool,
4747
Link $linkResource,
48-
ProductLinkRepositoryInterface $productLinkRepository,
48+
ProductLinkRepositoryInterface $productLinkRepo,
4949
\Magento\Catalog\Model\Product\LinkTypeProvider $linkTypeProvider
5050
)
5151
{
5252
$this->metadataPool = $metadataPool;
5353
$this->linkResource = $linkResource;
54-
$this->productLinkRepository = $productLinkRepository;
54+
$this->productLinkRepo = $productLinkRepo;
5555
$this->linkTypeProvider = $linkTypeProvider;
5656
}
5757

0 commit comments

Comments
 (0)