├── .gitignore ├── Docs └── .placeholder ├── README.md ├── Sniffs ├── Classes │ └── MultipleClassesOneFileSniff.php ├── Commenting │ ├── ClassCommentSniff.php │ └── FunctionCommentSniff.php ├── Formatting │ └── BlankLineBeforeReturnSniff.php ├── NamingConventions │ └── InterfaceSuffixSniff.php ├── Scope │ └── MethodScopeSniff.php └── WhiteSpace │ └── DiscourageFitzinatorSniff.php ├── Tests └── Formatting │ ├── BlankLineBeforeReturnUnitTest.inc │ └── BlankLineBeforeReturnUnitTest.php ├── composer.json └── ruleset.xml /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | 3 | -------------------------------------------------------------------------------- /Docs/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaphub/phpcs-symfony2-standard/HEAD/README.md -------------------------------------------------------------------------------- /Sniffs/Classes/MultipleClassesOneFileSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaphub/phpcs-symfony2-standard/HEAD/Sniffs/Classes/MultipleClassesOneFileSniff.php -------------------------------------------------------------------------------- /Sniffs/Commenting/ClassCommentSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaphub/phpcs-symfony2-standard/HEAD/Sniffs/Commenting/ClassCommentSniff.php -------------------------------------------------------------------------------- /Sniffs/Commenting/FunctionCommentSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaphub/phpcs-symfony2-standard/HEAD/Sniffs/Commenting/FunctionCommentSniff.php -------------------------------------------------------------------------------- /Sniffs/Formatting/BlankLineBeforeReturnSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaphub/phpcs-symfony2-standard/HEAD/Sniffs/Formatting/BlankLineBeforeReturnSniff.php -------------------------------------------------------------------------------- /Sniffs/NamingConventions/InterfaceSuffixSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaphub/phpcs-symfony2-standard/HEAD/Sniffs/NamingConventions/InterfaceSuffixSniff.php -------------------------------------------------------------------------------- /Sniffs/Scope/MethodScopeSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaphub/phpcs-symfony2-standard/HEAD/Sniffs/Scope/MethodScopeSniff.php -------------------------------------------------------------------------------- /Sniffs/WhiteSpace/DiscourageFitzinatorSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaphub/phpcs-symfony2-standard/HEAD/Sniffs/WhiteSpace/DiscourageFitzinatorSniff.php -------------------------------------------------------------------------------- /Tests/Formatting/BlankLineBeforeReturnUnitTest.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaphub/phpcs-symfony2-standard/HEAD/Tests/Formatting/BlankLineBeforeReturnUnitTest.inc -------------------------------------------------------------------------------- /Tests/Formatting/BlankLineBeforeReturnUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaphub/phpcs-symfony2-standard/HEAD/Tests/Formatting/BlankLineBeforeReturnUnitTest.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaphub/phpcs-symfony2-standard/HEAD/composer.json -------------------------------------------------------------------------------- /ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaphub/phpcs-symfony2-standard/HEAD/ruleset.xml --------------------------------------------------------------------------------