-
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 pull request #777 from magento-mpi/mpi-pr-ce-s85
[MPI]Sprint-85
- Loading branch information
Showing
8 changed files
with
66 additions
and
2 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
13 changes: 13 additions & 0 deletions
13
app/design/adminhtml/Magento/backend/Magento_Signifyd/web/css/source/_module.less
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,13 @@ | ||
// /** | ||
// * Copyright © 2013-2017 Magento, Inc. All rights reserved. | ||
// * See COPYING.txt for license details. | ||
// */ | ||
|
||
// | ||
// Order Case Info | ||
// --------------------------------------------- | ||
|
||
.order-case-table { | ||
&:extend(.abs-order-tables all); | ||
&:extend(.abs-order-tbody-border all); | ||
} |
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
25 changes: 25 additions & 0 deletions
25
lib/internal/Magento/Framework/App/PlainTextRequestInterface.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,25 @@ | ||
<?php | ||
/** | ||
* Copyright © 2013-2017 Magento, Inc. All rights reserved | ||
* See COPYING.txt for license details. | ||
*/ | ||
namespace Magento\Framework\App; | ||
|
||
/** | ||
* Interface provides low-level access to Magento Application Request and represent it as a simple string. | ||
* This interface does not define format of the request content. | ||
* Clients of this interface must be able to validate syntax of request and parse it. | ||
* | ||
* To read already parsed request data use \Magento\Framework\App\RequestInterface. | ||
* | ||
* @api | ||
*/ | ||
interface PlainTextRequestInterface | ||
{ | ||
/** | ||
* Returns textual representation of request to Magento. | ||
* | ||
* @return string | ||
*/ | ||
public function getContent(); | ||
} |
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
18 changes: 18 additions & 0 deletions
18
lib/internal/Magento/Framework/App/RequestContentInterface.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,18 @@ | ||
<?php | ||
/** | ||
* Copyright © 2013-2017 Magento, Inc. All rights reserved | ||
* See COPYING.txt for license details. | ||
*/ | ||
namespace Magento\Framework\App; | ||
|
||
/** | ||
* Interface provides access to parsed request data as well as to the request textual representation. | ||
* This interface exists to provide backward compatibility. | ||
* Direct usage of RequestInterface and PlainTextRequestInterface is preferable. | ||
* | ||
* @api | ||
*/ | ||
interface RequestContentInterface extends RequestInterface, PlainTextRequestInterface | ||
{ | ||
|
||
} |
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