├── .gitignore ├── .gitmodules ├── README.md ├── config └── bootstrap.php ├── extensions └── command │ ├── Covered.php │ ├── Documented.php │ └── Syntax.php └── tests └── cases └── console └── command └── DocumentedTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/li3_qa/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/li3_qa/HEAD/README.md -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/li3_qa/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /extensions/command/Covered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/li3_qa/HEAD/extensions/command/Covered.php -------------------------------------------------------------------------------- /extensions/command/Documented.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/li3_qa/HEAD/extensions/command/Documented.php -------------------------------------------------------------------------------- /extensions/command/Syntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/li3_qa/HEAD/extensions/command/Syntax.php -------------------------------------------------------------------------------- /tests/cases/console/command/DocumentedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/li3_qa/HEAD/tests/cases/console/command/DocumentedTest.php --------------------------------------------------------------------------------