Skip to content

Commit b52f193

Browse files
author
Stanislav Idolov
committed
MAGETWO-83893: Eliminate @codingStandardsIgnoreFile annotation from codebase
1 parent 6721392 commit b52f193

File tree

1 file changed

+4
-4
lines changed
  • lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model

1 file changed

+4
-4
lines changed

lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/SevenInterface.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*/
66

77
/**
8+
* @codingStandardsIgnoreStart
89
* Coding Standards have to be ignored in this file, as it is just a data source for tests.
910
*/
1011

@@ -31,7 +32,7 @@ interface SevenInterface extends \Magento\Framework\Code\Generator\CodeGenerator
3132
* @param array $data
3233
* @return TestThree
3334
*/
34-
public static function testMethod1(array &$data = []);
35+
public static function testMethod1(array &$data = array());
3536

3637
/**
3738
* Method short description
@@ -44,8 +45,7 @@ public static function testMethod1(array &$data = []);
4445
*/
4546
public function testMethod2($data = 'test_default', $flag = true);
4647

47-
/**
48-
* @return mixed
49-
*/
5048
public function testMethod3();
49+
50+
5151
}

0 commit comments

Comments
 (0)