├── .gitignore ├── FireGento ├── Sniffs │ └── Commenting │ │ ├── ClassCommentSniff.php │ │ ├── FileCommentSniff.php │ │ └── FunctionCommentSniff.php └── ruleset.xml ├── LICENSE.md ├── README.md ├── composer.json └── composer.lock /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* 2 | -------------------------------------------------------------------------------- /FireGento/Sniffs/Commenting/ClassCommentSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/phpcs/HEAD/FireGento/Sniffs/Commenting/ClassCommentSniff.php -------------------------------------------------------------------------------- /FireGento/Sniffs/Commenting/FileCommentSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/phpcs/HEAD/FireGento/Sniffs/Commenting/FileCommentSniff.php -------------------------------------------------------------------------------- /FireGento/Sniffs/Commenting/FunctionCommentSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/phpcs/HEAD/FireGento/Sniffs/Commenting/FunctionCommentSniff.php -------------------------------------------------------------------------------- /FireGento/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/phpcs/HEAD/FireGento/ruleset.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/phpcs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/phpcs/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/phpcs/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/phpcs/HEAD/composer.lock --------------------------------------------------------------------------------