-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'mainline/develop' into PR_Branch
- Loading branch information
Showing
111 changed files
with
2,344 additions
and
1,165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
app/code/Magento/Catalog/Api/Data/ProductWebsiteLinkInterface.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
/** | ||
* Copyright © 2015 Magento. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
namespace Magento\Catalog\Api\Data; | ||
|
||
/** | ||
* @api | ||
*/ | ||
interface ProductWebsiteLinkInterface | ||
{ | ||
/** | ||
* @return string | ||
*/ | ||
public function getSku(); | ||
|
||
/** | ||
* @param string $sku | ||
* @return $this | ||
*/ | ||
public function setSku($sku); | ||
|
||
/** | ||
* Get website ids | ||
* | ||
* @return int | ||
*/ | ||
public function getWebsiteId(); | ||
|
||
/** | ||
* Set website id | ||
* | ||
* @param int $websiteId | ||
* @return $this | ||
*/ | ||
public function setWebsiteId($websiteId); | ||
} |
Oops, something went wrong.