├── Inpsyde ├── Helpers │ ├── Boundaries.php │ ├── FunctionDocBlock.php │ ├── FunctionReturnStatement.php │ ├── Functions.php │ ├── Misc.php │ ├── Names.php │ ├── Objects.php │ └── WpHooks.php ├── Sniffs │ └── CodeQuality │ │ ├── ArgumentTypeDeclarationSniff.php │ │ ├── DisableCallUserFuncSniff.php │ │ ├── DisableMagicSerializeSniff.php │ │ ├── DisableSerializeInterfaceSniff.php │ │ ├── DisallowShortOpenTagSniff.php │ │ ├── ElementNameMinimalLengthSniff.php │ │ ├── EncodingCommentSniff.php │ │ ├── ForbiddenPublicPropertySniff.php │ │ ├── FunctionBodyStartSniff.php │ │ ├── FunctionLengthSniff.php │ │ ├── HookClosureReturnSniff.php │ │ ├── HookPrioritySniff.php │ │ ├── LineLengthSniff.php │ │ ├── NestingLevelSniff.php │ │ ├── NoAccessorsSniff.php │ │ ├── NoElseSniff.php │ │ ├── NoRootNamespaceFunctionsSniff.php │ │ ├── NoTopLevelDefineSniff.php │ │ ├── PropertyPerClassLimitSniff.php │ │ ├── Psr4Sniff.php │ │ ├── ReturnTypeDeclarationSniff.php │ │ ├── StaticClosureSniff.php │ │ └── VariablesNameSniff.php └── ruleset.xml ├── InpsydeTemplates ├── Sniffs │ └── Formatting │ │ ├── AlternativeControlStructureSniff.php │ │ ├── ShortEchoTagSniff.php │ │ └── TrailingSemicolonSniff.php └── ruleset.xml ├── LICENSE └── composer.json /Inpsyde/Helpers/Boundaries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Helpers/Boundaries.php -------------------------------------------------------------------------------- /Inpsyde/Helpers/FunctionDocBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Helpers/FunctionDocBlock.php -------------------------------------------------------------------------------- /Inpsyde/Helpers/FunctionReturnStatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Helpers/FunctionReturnStatement.php -------------------------------------------------------------------------------- /Inpsyde/Helpers/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Helpers/Functions.php -------------------------------------------------------------------------------- /Inpsyde/Helpers/Misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Helpers/Misc.php -------------------------------------------------------------------------------- /Inpsyde/Helpers/Names.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Helpers/Names.php -------------------------------------------------------------------------------- /Inpsyde/Helpers/Objects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Helpers/Objects.php -------------------------------------------------------------------------------- /Inpsyde/Helpers/WpHooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Helpers/WpHooks.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/ArgumentTypeDeclarationSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/ArgumentTypeDeclarationSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/DisableCallUserFuncSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/DisableCallUserFuncSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/DisableMagicSerializeSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/DisableMagicSerializeSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/DisableSerializeInterfaceSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/DisableSerializeInterfaceSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/DisallowShortOpenTagSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/DisallowShortOpenTagSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/ElementNameMinimalLengthSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/ElementNameMinimalLengthSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/EncodingCommentSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/EncodingCommentSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/ForbiddenPublicPropertySniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/ForbiddenPublicPropertySniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/FunctionBodyStartSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/FunctionBodyStartSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/FunctionLengthSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/FunctionLengthSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/HookClosureReturnSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/HookClosureReturnSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/HookPrioritySniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/HookPrioritySniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/LineLengthSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/LineLengthSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/NestingLevelSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/NestingLevelSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/NoAccessorsSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/NoAccessorsSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/NoElseSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/NoElseSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/NoRootNamespaceFunctionsSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/NoRootNamespaceFunctionsSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/NoTopLevelDefineSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/NoTopLevelDefineSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/PropertyPerClassLimitSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/PropertyPerClassLimitSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/Psr4Sniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/Psr4Sniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/ReturnTypeDeclarationSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/ReturnTypeDeclarationSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/StaticClosureSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/StaticClosureSniff.php -------------------------------------------------------------------------------- /Inpsyde/Sniffs/CodeQuality/VariablesNameSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/Sniffs/CodeQuality/VariablesNameSniff.php -------------------------------------------------------------------------------- /Inpsyde/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/Inpsyde/ruleset.xml -------------------------------------------------------------------------------- /InpsydeTemplates/Sniffs/Formatting/AlternativeControlStructureSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/InpsydeTemplates/Sniffs/Formatting/AlternativeControlStructureSniff.php -------------------------------------------------------------------------------- /InpsydeTemplates/Sniffs/Formatting/ShortEchoTagSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/InpsydeTemplates/Sniffs/Formatting/ShortEchoTagSniff.php -------------------------------------------------------------------------------- /InpsydeTemplates/Sniffs/Formatting/TrailingSemicolonSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/InpsydeTemplates/Sniffs/Formatting/TrailingSemicolonSniff.php -------------------------------------------------------------------------------- /InpsydeTemplates/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/InpsydeTemplates/ruleset.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/php-coding-standards/HEAD/composer.json --------------------------------------------------------------------------------