app/code/community/Ecocode/Profiler/Block/Renderer/RendererInterface.php
Avoid excessively long class names like Ecocode_Profiler_Block_Renderer_RendererInterface. Keep class name length under 40. Open
Open
interface Ecocode_Profiler_Block_Renderer_RendererInterface
{
public function render(array $data = []);
}
- Read upRead up
- Exclude checks
LongClassName
Since: 2.9
Detects when classes or interfaces are declared with excessively long names.
Example
class ATooLongClassNameThatHintsAtADesignProblem {
}
interface ATooLongInterfaceNameThatHintsAtADesignProblem {
}