├── .github └── workflows │ ├── run-tests.yml │ └── update-facade-documenter.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── facade.php ├── phpunit.xml ├── src ├── AutodocServiceProvider.php └── Commands │ └── DocumentFacades.php └── tests ├── FacadesTest.php ├── Fixtures ├── FacadeWithSee.php ├── FacadeWithoutSee.php └── SeenClass.php └── TestCase.php /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebauman/autodoc-facades/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.github/workflows/update-facade-documenter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebauman/autodoc-facades/HEAD/.github/workflows/update-facade-documenter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebauman/autodoc-facades/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebauman/autodoc-facades/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebauman/autodoc-facades/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebauman/autodoc-facades/HEAD/composer.json -------------------------------------------------------------------------------- /facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebauman/autodoc-facades/HEAD/facade.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebauman/autodoc-facades/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/AutodocServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebauman/autodoc-facades/HEAD/src/AutodocServiceProvider.php -------------------------------------------------------------------------------- /src/Commands/DocumentFacades.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebauman/autodoc-facades/HEAD/src/Commands/DocumentFacades.php -------------------------------------------------------------------------------- /tests/FacadesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebauman/autodoc-facades/HEAD/tests/FacadesTest.php -------------------------------------------------------------------------------- /tests/Fixtures/FacadeWithSee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebauman/autodoc-facades/HEAD/tests/Fixtures/FacadeWithSee.php -------------------------------------------------------------------------------- /tests/Fixtures/FacadeWithoutSee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebauman/autodoc-facades/HEAD/tests/Fixtures/FacadeWithoutSee.php -------------------------------------------------------------------------------- /tests/Fixtures/SeenClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebauman/autodoc-facades/HEAD/tests/Fixtures/SeenClass.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebauman/autodoc-facades/HEAD/tests/TestCase.php --------------------------------------------------------------------------------