Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 589 Bytes

SlevomatCodingStandard.Classes.ClassLength.md

File metadata and controls

15 lines (9 loc) · 589 Bytes

Pattern: Class is too long

Issue: -

Description

Disallows long classes. This rule provides the following settings:

  • includeComments: should comments be included in the count (default value is false).
  • includeWhitespace: should empty lines be included in the count (default value is false).
  • maxLinesLength: specifies max allowed function lines length (default value is 250).

Further Reading