Skip to content

Commit 4c14ab0

Browse files
committed
Fix static tests
Signed-off-by: Denis Kopylov <[email protected]>
1 parent b51317b commit 4c14ab0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

dev/tests/static/framework/Magento/CodeMessDetector/Rule/UnusedCode/UnusedFormalParameter.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,12 @@ private function removeVariablesByCount(int $countOfRemovingVariables)
8989
}
9090

9191
/**
92-
* Check if namespace contain "Plugin"
93-
* Case sensitive ignored
92+
* Check if namespace contain "Plugin". Case-sensitive ignored
9493
*
95-
* @param $class
94+
* @param string $class
9695
* @return bool
9796
*/
98-
private function isPluginClass($class): bool
97+
private function isPluginClass(string $class): bool
9998
{
10099
return (stripos($class, 'plugin') !== false);
101100
}

0 commit comments

Comments
 (0)