Skip to content

Commit 5c7a8e4

Browse files
committed
Fixed coding standard violations in Framework\HTTP namespace:
- Removed @codingstandardsIgnoreFile from header of the file. - Corrected line length
1 parent e3fc5b7 commit 5c7a8e4

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

lib/internal/Magento/Framework/HTTP/Adapter/Curl.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
* See COPYING.txt for license details.
55
*/
66

7-
// @codingStandardsIgnoreFile
8-
97
/**
108
* HTTP CURL Adapter
119
*

lib/internal/Magento/Framework/HTTP/Header.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
* See COPYING.txt for license details.
55
*/
66

7-
// @codingStandardsIgnoreFile
8-
97
namespace Magento\Framework\HTTP;
108

119
/**
@@ -29,8 +27,10 @@ class Header
2927
* @param \Magento\Framework\App\RequestInterface $httpRequest
3028
* @param \Magento\Framework\Stdlib\StringUtils $converter
3129
*/
32-
public function __construct(\Magento\Framework\App\RequestInterface $httpRequest, \Magento\Framework\Stdlib\StringUtils $converter)
33-
{
30+
public function __construct(
31+
\Magento\Framework\App\RequestInterface $httpRequest,
32+
\Magento\Framework\Stdlib\StringUtils $converter
33+
) {
3434
$this->_request = $httpRequest;
3535
$this->_converter = $converter;
3636
}

0 commit comments

Comments
 (0)