-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Removed superfluous interfaces and entries in ProductDependencyProvider - Added missing interfaces for business classes - Fixed missing / wrong specifications and inherits - Renamed ProductMetadata to ItemMetadata - Used UtilEncodingService instead of json_encode - Fix usage of missing twig file in order detail view - Resolved some dependency issues
- Loading branch information
Showing
5 changed files
with
29 additions
and
7 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
22 changes: 22 additions & 0 deletions
22
src/Spryker/Zed/Customer/Business/Sales/CustomerOrderHydratorInterface.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,22 @@ | ||
<?php | ||
|
||
/** | ||
* Copyright © 2016-present Spryker Systems GmbH. All rights reserved. | ||
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file. | ||
*/ | ||
|
||
namespace Spryker\Zed\Customer\Business\Sales; | ||
|
||
use Generated\Shared\Transfer\OrderTransfer; | ||
|
||
interface CustomerOrderHydratorInterface | ||
{ | ||
|
||
/** | ||
* @param \Generated\Shared\Transfer\OrderTransfer $orderTransfer | ||
* | ||
* @return \Generated\Shared\Transfer\OrderTransfer | ||
*/ | ||
public function hydrateOrderTransfer(OrderTransfer $orderTransfer); | ||
|
||
} |