-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4816 from magento-chaika/Chaika-PR-2019-09-20
Chaika-PR-2019-09-20
- Loading branch information
Showing
18 changed files
with
1,148 additions
and
656 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
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
29 changes: 29 additions & 0 deletions
29
app/code/Magento/ImportExport/Api/Data/ExtendedExportInfoInterface.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,29 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Magento\ImportExport\Api\Data; | ||
|
||
/** | ||
* Extended export interface for implementation of Skipped Attributes which are missing from the basic interface | ||
*/ | ||
interface ExtendedExportInfoInterface extends ExportInfoInterface | ||
{ | ||
/** | ||
* Returns skipped attributes | ||
* | ||
* @return mixed | ||
*/ | ||
public function getSkipAttr(); | ||
|
||
/** | ||
* Set skipped attributes | ||
* | ||
* @param string $skipAttr | ||
* @return mixed | ||
*/ | ||
public function setSkipAttr($skipAttr); | ||
} |
Oops, something went wrong.