We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b51317b commit 4c14ab0Copy full SHA for 4c14ab0
dev/tests/static/framework/Magento/CodeMessDetector/Rule/UnusedCode/UnusedFormalParameter.php
@@ -89,13 +89,12 @@ private function removeVariablesByCount(int $countOfRemovingVariables)
89
}
90
91
/**
92
- * Check if namespace contain "Plugin"
93
- * Case sensitive ignored
+ * Check if namespace contain "Plugin". Case-sensitive ignored
94
*
95
- * @param $class
+ * @param string $class
96
* @return bool
97
*/
98
- private function isPluginClass($class): bool
+ private function isPluginClass(string $class): bool
99
{
100
return (stripos($class, 'plugin') !== false);
101
0 commit comments