Skip to content

Commit ddddc50

Browse files
author
Stanislav Idolov
committed
MAGETWO-83893: Eliminate @codingStandardsIgnoreFile annotation from codebase
1 parent 008379b commit ddddc50

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/code/Magento/Customer/Test/Unit/Controller/Ajax/LoginTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ protected function setUp()
122122
$this->cookieManager = $this->getMockBuilder(\Magento\Framework\Stdlib\CookieManagerInterface::class)
123123
->setMethods(['getCookie', 'deleteCookie'])
124124
->getMockForAbstractClass();
125-
$this->cookieMetadataFactory = $this->getMockBuilder(\Magento\Framework\Stdlib\Cookie\CookieMetadataFactory::class)
126-
->disableOriginalConstructor()
127-
->getMock();
125+
$this->cookieMetadataFactory = $this->getMockBuilder(
126+
\Magento\Framework\Stdlib\Cookie\CookieMetadataFactory::class
127+
)->disableOriginalConstructor()->getMock();
128128
$this->cookieMetadata = $this->getMockBuilder(\Magento\Framework\Stdlib\Cookie\CookieMetadata::class)
129129
->disableOriginalConstructor()
130130
->getMock();

app/code/Magento/Downloadable/Helper/Download.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ public function output()
269269
$handle = $this->_getHandle();
270270
$this->_session->writeClose();
271271
while (true == ($buffer = $handle->read(1024))) {
272-
echo $buffer;
272+
echo $buffer; //@codingStandardsIgnoreLine
273273
}
274274
}
275275

0 commit comments

Comments
 (0)