├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin ├── phpreflect ├── phpreflect.1 ├── phpreflect.json-schema └── phpreflect.json.dist ├── box.json.dist ├── composer.json ├── docs ├── api-compared.asciidoc ├── attributes.asciidoc ├── bootstrap3.conf ├── build │ ├── epub.bat │ └── html5-bootstrap3.bat ├── cover.asciidoc ├── cover.png ├── developer-guide--analysers.asciidoc ├── developer-guide--api.asciidoc ├── developer-guide--cache-plugin.asciidoc ├── developer-guide--filters.asciidoc ├── developer-guide--handle-results.asciidoc ├── developer-guide--log-plugin.asciidoc ├── developer-guide--notifier-plugin.asciidoc ├── developer-guide--plugins.asciidoc ├── developer-guide--source-provider.asciidoc ├── developer-guide.asciidoc ├── footer.html ├── getting-started.asciidoc ├── images │ ├── icons │ │ ├── README │ │ ├── callouts │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── caution.png │ │ ├── example.png │ │ ├── favicon.ico │ │ ├── font-awesome │ │ │ ├── check-square-o.png │ │ │ ├── code.png │ │ │ ├── filter.png │ │ │ ├── puzzle-piece.png │ │ │ ├── search-plus.png │ │ │ └── square-o.png │ │ ├── home.png │ │ ├── important.png │ │ ├── next.png │ │ ├── note.png │ │ ├── prev.png │ │ ├── tip.png │ │ ├── up.png │ │ └── warning.png │ ├── logo.png │ ├── plantUML_classDiag.png │ └── plantUML_packageDiag.png ├── index-jumboinfo.html ├── index.asciidoc ├── javascripts │ ├── asciidoc.js │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.ui.totop.js │ └── jquery.ui.totop.min.js ├── license.asciidoc ├── loc_analysis.out.asciidoc ├── loc_analysis.raw.asciidoc ├── migrate_properties.out.asciidoc ├── migrate_properties.php.asciidoc ├── migration-guide-20.asciidoc ├── migration-guide-30.asciidoc ├── navinfo.html ├── php_filters.asciidoc ├── phpreflect-book-docinfo.xml ├── phpreflect-book.asciidoc ├── phpreflect.1.asciidoc ├── reflection_class.out.asciidoc ├── revision.asciidoc ├── structure_analysis.out.asciidoc ├── structure_analysis.raw.asciidoc ├── structure_analysis_filtered.out.asciidoc ├── stylesheets │ ├── asciidoc.css │ ├── cover.css │ ├── docbook-xsl.css │ ├── pygments.css │ ├── pygments.monokai.css │ ├── pygments.pastie.css │ ├── tocaffix.css │ ├── tocmmenu.css │ └── ui.totop.css ├── themes.json ├── user-guide--commands.asciidoc ├── user-guide--configuration.asciidoc ├── user-guide--installation.asciidoc ├── user-guide.asciidoc └── versions.html ├── examples ├── YourFilters.php ├── YourNamespace │ ├── CachePlugin.php │ ├── LogPlugin.php │ ├── YourLogger.php │ └── yournamespace.json ├── api_analyser_run.php ├── api_analyser_run_with_cache.php ├── api_analyser_run_with_filter.php ├── api_analyser_run_with_listener.php ├── api_analyser_run_with_logger.php ├── api_plugin_list.php └── api_reflection_class.php ├── manifest.txt ├── phar-manifest.php ├── phar-stub.php ├── phpunit.xml.dist ├── src └── Bartlett │ ├── Reflect.php │ └── Reflect │ ├── Analyser │ ├── AbstractAnalyser.php │ ├── AbstractSniffAnalyser.php │ ├── AnalyserInterface.php │ ├── AnalyserManager.php │ ├── LocAnalyser.php │ ├── ReflectionAnalyser.php │ └── StructureAnalyser.php │ ├── Api │ ├── Analyser.php │ ├── BaseApi.php │ ├── Cache.php │ ├── Config.php │ ├── Diagnose.php │ ├── Diagram.php │ ├── Plugin.php │ ├── Reflection.php │ └── V3 │ │ ├── Analyser.php │ │ ├── Cache.php │ │ ├── Common.php │ │ ├── Config.php │ │ ├── Diagnose.php │ │ ├── Diagram.php │ │ ├── Plugin.php │ │ └── Reflection.php │ ├── Client.php │ ├── Client │ ├── ClientInterface.php │ └── LocalClient.php │ ├── Collection │ └── ReflectionCollection.php │ ├── Console │ ├── Application.php │ ├── Command.php │ ├── CommandFactory.php │ └── Formatter │ │ ├── LocOutputFormatter.php │ │ ├── OutputFormatter.php │ │ └── StructureOutputFormatter.php │ ├── Environment.php │ ├── Event │ ├── AbstractDispatcher.php │ ├── BuildEvent.php │ ├── CacheAwareEventDispatcher.php │ ├── CompleteEvent.php │ ├── DispatcherInterface.php │ ├── ErrorEvent.php │ ├── ProgressEvent.php │ ├── SniffEvent.php │ └── SuccessEvent.php │ ├── Exception │ ├── Exception.php │ └── ModelException.php │ ├── Model │ ├── AbstractFunctionModel.php │ ├── AbstractModel.php │ ├── ClassModel.php │ ├── ConstantModel.php │ ├── FunctionModel.php │ ├── MethodModel.php │ ├── ParameterModel.php │ └── PropertyModel.php │ ├── MonologConsoleLogger.php │ ├── Output │ ├── Analyser.php │ ├── Cache.php │ ├── Config.php │ ├── Diagnose.php │ ├── Diagram.php │ ├── Plugin.php │ └── Reflection.php │ ├── PhpParser │ ├── NodeProcessor.php │ └── NodeProcessorAbstract.php │ ├── Plugin │ ├── Cache │ │ ├── CacheAdapterInterface.php │ │ ├── CacheStorageInterface.php │ │ ├── DefaultCacheStorage.php │ │ └── DoctrineCacheAdapter.php │ ├── CachePlugin.php │ ├── Log │ │ └── DefaultLogger.php │ ├── LogPlugin.php │ ├── Notifier │ │ ├── GrowlNotifier.php │ │ └── NotifierInterface.php │ ├── NotifierPlugin.php │ ├── PluginInterface.php │ ├── PluginManager.php │ └── ProfilerPlugin.php │ ├── Sniffer │ ├── SniffAbstract.php │ └── SniffInterface.php │ ├── Tokenizer │ └── DefaultTokenizer.php │ ├── Util │ └── Timer.php │ └── Visitor │ └── VisitorInterface.php └── tests ├── Analyser ├── AnalyserManagerTest.php ├── BarAnalyser.php ├── FooAnalyser.php └── phpreflect.json ├── Environment ├── YourLogger.php ├── dir1 │ └── phpreflect.json.dist ├── dir2 │ └── phpreflect.json.dist └── phpreflect.json ├── EnvironmentTest.php ├── Model ├── ClassModelTest.php ├── ConstantModelTest.php ├── FunctionModelTest.php ├── GenericModelTest.php ├── IssueTest.php ├── MethodModelTest.php ├── ParameterModelTest.php └── PropertyModelTest.php ├── MonologConsoleLogger.php ├── ResultPrinter.php ├── bootstrap.php └── fixtures ├── classes.php ├── constants.php ├── functions.php ├── namespaces.php ├── packages.php └── properties.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/README.md -------------------------------------------------------------------------------- /bin/phpreflect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/bin/phpreflect -------------------------------------------------------------------------------- /bin/phpreflect.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/bin/phpreflect.1 -------------------------------------------------------------------------------- /bin/phpreflect.json-schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/bin/phpreflect.json-schema -------------------------------------------------------------------------------- /bin/phpreflect.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/bin/phpreflect.json.dist -------------------------------------------------------------------------------- /box.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/box.json.dist -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/composer.json -------------------------------------------------------------------------------- /docs/api-compared.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/api-compared.asciidoc -------------------------------------------------------------------------------- /docs/attributes.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/attributes.asciidoc -------------------------------------------------------------------------------- /docs/bootstrap3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/bootstrap3.conf -------------------------------------------------------------------------------- /docs/build/epub.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/build/epub.bat -------------------------------------------------------------------------------- /docs/build/html5-bootstrap3.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/build/html5-bootstrap3.bat -------------------------------------------------------------------------------- /docs/cover.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/cover.asciidoc -------------------------------------------------------------------------------- /docs/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/cover.png -------------------------------------------------------------------------------- /docs/developer-guide--analysers.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/developer-guide--analysers.asciidoc -------------------------------------------------------------------------------- /docs/developer-guide--api.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/developer-guide--api.asciidoc -------------------------------------------------------------------------------- /docs/developer-guide--cache-plugin.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/developer-guide--cache-plugin.asciidoc -------------------------------------------------------------------------------- /docs/developer-guide--filters.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/developer-guide--filters.asciidoc -------------------------------------------------------------------------------- /docs/developer-guide--handle-results.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/developer-guide--handle-results.asciidoc -------------------------------------------------------------------------------- /docs/developer-guide--log-plugin.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/developer-guide--log-plugin.asciidoc -------------------------------------------------------------------------------- /docs/developer-guide--notifier-plugin.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/developer-guide--notifier-plugin.asciidoc -------------------------------------------------------------------------------- /docs/developer-guide--plugins.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/developer-guide--plugins.asciidoc -------------------------------------------------------------------------------- /docs/developer-guide--source-provider.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/developer-guide--source-provider.asciidoc -------------------------------------------------------------------------------- /docs/developer-guide.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/developer-guide.asciidoc -------------------------------------------------------------------------------- /docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/footer.html -------------------------------------------------------------------------------- /docs/getting-started.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/getting-started.asciidoc -------------------------------------------------------------------------------- /docs/images/icons/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/README -------------------------------------------------------------------------------- /docs/images/icons/callouts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/callouts/1.png -------------------------------------------------------------------------------- /docs/images/icons/callouts/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/callouts/10.png -------------------------------------------------------------------------------- /docs/images/icons/callouts/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/callouts/11.png -------------------------------------------------------------------------------- /docs/images/icons/callouts/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/callouts/12.png -------------------------------------------------------------------------------- /docs/images/icons/callouts/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/callouts/13.png -------------------------------------------------------------------------------- /docs/images/icons/callouts/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/callouts/14.png -------------------------------------------------------------------------------- /docs/images/icons/callouts/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/callouts/15.png -------------------------------------------------------------------------------- /docs/images/icons/callouts/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/callouts/2.png -------------------------------------------------------------------------------- /docs/images/icons/callouts/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/callouts/3.png -------------------------------------------------------------------------------- /docs/images/icons/callouts/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/callouts/4.png -------------------------------------------------------------------------------- /docs/images/icons/callouts/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/callouts/5.png -------------------------------------------------------------------------------- /docs/images/icons/callouts/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/callouts/6.png -------------------------------------------------------------------------------- /docs/images/icons/callouts/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/callouts/7.png -------------------------------------------------------------------------------- /docs/images/icons/callouts/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/callouts/8.png -------------------------------------------------------------------------------- /docs/images/icons/callouts/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/callouts/9.png -------------------------------------------------------------------------------- /docs/images/icons/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/caution.png -------------------------------------------------------------------------------- /docs/images/icons/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/example.png -------------------------------------------------------------------------------- /docs/images/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/favicon.ico -------------------------------------------------------------------------------- /docs/images/icons/font-awesome/check-square-o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/font-awesome/check-square-o.png -------------------------------------------------------------------------------- /docs/images/icons/font-awesome/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/font-awesome/code.png -------------------------------------------------------------------------------- /docs/images/icons/font-awesome/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/font-awesome/filter.png -------------------------------------------------------------------------------- /docs/images/icons/font-awesome/puzzle-piece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/font-awesome/puzzle-piece.png -------------------------------------------------------------------------------- /docs/images/icons/font-awesome/search-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/font-awesome/search-plus.png -------------------------------------------------------------------------------- /docs/images/icons/font-awesome/square-o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/font-awesome/square-o.png -------------------------------------------------------------------------------- /docs/images/icons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/home.png -------------------------------------------------------------------------------- /docs/images/icons/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/important.png -------------------------------------------------------------------------------- /docs/images/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/next.png -------------------------------------------------------------------------------- /docs/images/icons/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/note.png -------------------------------------------------------------------------------- /docs/images/icons/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/prev.png -------------------------------------------------------------------------------- /docs/images/icons/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/tip.png -------------------------------------------------------------------------------- /docs/images/icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/up.png -------------------------------------------------------------------------------- /docs/images/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/icons/warning.png -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/images/plantUML_classDiag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/plantUML_classDiag.png -------------------------------------------------------------------------------- /docs/images/plantUML_packageDiag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/images/plantUML_packageDiag.png -------------------------------------------------------------------------------- /docs/index-jumboinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/index-jumboinfo.html -------------------------------------------------------------------------------- /docs/index.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/index.asciidoc -------------------------------------------------------------------------------- /docs/javascripts/asciidoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/javascripts/asciidoc.js -------------------------------------------------------------------------------- /docs/javascripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/javascripts/jquery.js -------------------------------------------------------------------------------- /docs/javascripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/javascripts/jquery.min.js -------------------------------------------------------------------------------- /docs/javascripts/jquery.ui.totop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/javascripts/jquery.ui.totop.js -------------------------------------------------------------------------------- /docs/javascripts/jquery.ui.totop.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/javascripts/jquery.ui.totop.min.js -------------------------------------------------------------------------------- /docs/license.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/license.asciidoc -------------------------------------------------------------------------------- /docs/loc_analysis.out.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/loc_analysis.out.asciidoc -------------------------------------------------------------------------------- /docs/loc_analysis.raw.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/loc_analysis.raw.asciidoc -------------------------------------------------------------------------------- /docs/migrate_properties.out.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/migrate_properties.out.asciidoc -------------------------------------------------------------------------------- /docs/migrate_properties.php.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/migrate_properties.php.asciidoc -------------------------------------------------------------------------------- /docs/migration-guide-20.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/migration-guide-20.asciidoc -------------------------------------------------------------------------------- /docs/migration-guide-30.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/migration-guide-30.asciidoc -------------------------------------------------------------------------------- /docs/navinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/navinfo.html -------------------------------------------------------------------------------- /docs/php_filters.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/php_filters.asciidoc -------------------------------------------------------------------------------- /docs/phpreflect-book-docinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/phpreflect-book-docinfo.xml -------------------------------------------------------------------------------- /docs/phpreflect-book.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/phpreflect-book.asciidoc -------------------------------------------------------------------------------- /docs/phpreflect.1.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/phpreflect.1.asciidoc -------------------------------------------------------------------------------- /docs/reflection_class.out.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/reflection_class.out.asciidoc -------------------------------------------------------------------------------- /docs/revision.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/revision.asciidoc -------------------------------------------------------------------------------- /docs/structure_analysis.out.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/structure_analysis.out.asciidoc -------------------------------------------------------------------------------- /docs/structure_analysis.raw.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/structure_analysis.raw.asciidoc -------------------------------------------------------------------------------- /docs/structure_analysis_filtered.out.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/structure_analysis_filtered.out.asciidoc -------------------------------------------------------------------------------- /docs/stylesheets/asciidoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/stylesheets/asciidoc.css -------------------------------------------------------------------------------- /docs/stylesheets/cover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/stylesheets/cover.css -------------------------------------------------------------------------------- /docs/stylesheets/docbook-xsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/stylesheets/docbook-xsl.css -------------------------------------------------------------------------------- /docs/stylesheets/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/stylesheets/pygments.css -------------------------------------------------------------------------------- /docs/stylesheets/pygments.monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/stylesheets/pygments.monokai.css -------------------------------------------------------------------------------- /docs/stylesheets/pygments.pastie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/stylesheets/pygments.pastie.css -------------------------------------------------------------------------------- /docs/stylesheets/tocaffix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/stylesheets/tocaffix.css -------------------------------------------------------------------------------- /docs/stylesheets/tocmmenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/stylesheets/tocmmenu.css -------------------------------------------------------------------------------- /docs/stylesheets/ui.totop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/stylesheets/ui.totop.css -------------------------------------------------------------------------------- /docs/themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/themes.json -------------------------------------------------------------------------------- /docs/user-guide--commands.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/user-guide--commands.asciidoc -------------------------------------------------------------------------------- /docs/user-guide--configuration.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/user-guide--configuration.asciidoc -------------------------------------------------------------------------------- /docs/user-guide--installation.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/user-guide--installation.asciidoc -------------------------------------------------------------------------------- /docs/user-guide.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/user-guide.asciidoc -------------------------------------------------------------------------------- /docs/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/docs/versions.html -------------------------------------------------------------------------------- /examples/YourFilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/examples/YourFilters.php -------------------------------------------------------------------------------- /examples/YourNamespace/CachePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/examples/YourNamespace/CachePlugin.php -------------------------------------------------------------------------------- /examples/YourNamespace/LogPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/examples/YourNamespace/LogPlugin.php -------------------------------------------------------------------------------- /examples/YourNamespace/YourLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/examples/YourNamespace/YourLogger.php -------------------------------------------------------------------------------- /examples/YourNamespace/yournamespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/examples/YourNamespace/yournamespace.json -------------------------------------------------------------------------------- /examples/api_analyser_run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/examples/api_analyser_run.php -------------------------------------------------------------------------------- /examples/api_analyser_run_with_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/examples/api_analyser_run_with_cache.php -------------------------------------------------------------------------------- /examples/api_analyser_run_with_filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/examples/api_analyser_run_with_filter.php -------------------------------------------------------------------------------- /examples/api_analyser_run_with_listener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/examples/api_analyser_run_with_listener.php -------------------------------------------------------------------------------- /examples/api_analyser_run_with_logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/examples/api_analyser_run_with_logger.php -------------------------------------------------------------------------------- /examples/api_plugin_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/examples/api_plugin_list.php -------------------------------------------------------------------------------- /examples/api_reflection_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/examples/api_reflection_class.php -------------------------------------------------------------------------------- /manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/manifest.txt -------------------------------------------------------------------------------- /phar-manifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/phar-manifest.php -------------------------------------------------------------------------------- /phar-stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/phar-stub.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Bartlett/Reflect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Analyser/AbstractAnalyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Analyser/AbstractAnalyser.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Analyser/AbstractSniffAnalyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Analyser/AbstractSniffAnalyser.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Analyser/AnalyserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Analyser/AnalyserInterface.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Analyser/AnalyserManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Analyser/AnalyserManager.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Analyser/LocAnalyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Analyser/LocAnalyser.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Analyser/ReflectionAnalyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Analyser/ReflectionAnalyser.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Analyser/StructureAnalyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Analyser/StructureAnalyser.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Api/Analyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Api/Analyser.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Api/BaseApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Api/BaseApi.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Api/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Api/Cache.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Api/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Api/Config.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Api/Diagnose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Api/Diagnose.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Api/Diagram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Api/Diagram.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Api/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Api/Plugin.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Api/Reflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Api/Reflection.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Api/V3/Analyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Api/V3/Analyser.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Api/V3/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Api/V3/Cache.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Api/V3/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Api/V3/Common.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Api/V3/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Api/V3/Config.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Api/V3/Diagnose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Api/V3/Diagnose.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Api/V3/Diagram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Api/V3/Diagram.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Api/V3/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Api/V3/Plugin.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Api/V3/Reflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Api/V3/Reflection.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Client.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Client/ClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Client/ClientInterface.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Client/LocalClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Client/LocalClient.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Collection/ReflectionCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Collection/ReflectionCollection.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Console/Application.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Console/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Console/Command.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Console/CommandFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Console/CommandFactory.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Console/Formatter/LocOutputFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Console/Formatter/LocOutputFormatter.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Console/Formatter/OutputFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Console/Formatter/OutputFormatter.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Console/Formatter/StructureOutputFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Console/Formatter/StructureOutputFormatter.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Environment.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Event/AbstractDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Event/AbstractDispatcher.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Event/BuildEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Event/BuildEvent.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Event/CacheAwareEventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Event/CacheAwareEventDispatcher.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Event/CompleteEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Event/CompleteEvent.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Event/DispatcherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Event/DispatcherInterface.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Event/ErrorEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Event/ErrorEvent.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Event/ProgressEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Event/ProgressEvent.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Event/SniffEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Event/SniffEvent.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Event/SuccessEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Event/SuccessEvent.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Exception/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Exception/Exception.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Exception/ModelException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Exception/ModelException.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Model/AbstractFunctionModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Model/AbstractFunctionModel.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Model/AbstractModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Model/AbstractModel.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Model/ClassModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Model/ClassModel.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Model/ConstantModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Model/ConstantModel.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Model/FunctionModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Model/FunctionModel.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Model/MethodModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Model/MethodModel.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Model/ParameterModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Model/ParameterModel.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Model/PropertyModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Model/PropertyModel.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/MonologConsoleLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/MonologConsoleLogger.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Output/Analyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Output/Analyser.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Output/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Output/Cache.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Output/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Output/Config.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Output/Diagnose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Output/Diagnose.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Output/Diagram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Output/Diagram.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Output/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Output/Plugin.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Output/Reflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Output/Reflection.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/PhpParser/NodeProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/PhpParser/NodeProcessor.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/PhpParser/NodeProcessorAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/PhpParser/NodeProcessorAbstract.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Plugin/Cache/CacheAdapterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Plugin/Cache/CacheAdapterInterface.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Plugin/Cache/CacheStorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Plugin/Cache/CacheStorageInterface.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Plugin/Cache/DefaultCacheStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Plugin/Cache/DefaultCacheStorage.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Plugin/Cache/DoctrineCacheAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Plugin/Cache/DoctrineCacheAdapter.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Plugin/CachePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Plugin/CachePlugin.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Plugin/Log/DefaultLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Plugin/Log/DefaultLogger.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Plugin/LogPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Plugin/LogPlugin.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Plugin/Notifier/GrowlNotifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Plugin/Notifier/GrowlNotifier.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Plugin/Notifier/NotifierInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Plugin/Notifier/NotifierInterface.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Plugin/NotifierPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Plugin/NotifierPlugin.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Plugin/PluginInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Plugin/PluginInterface.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Plugin/PluginManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Plugin/PluginManager.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Plugin/ProfilerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Plugin/ProfilerPlugin.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Sniffer/SniffAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Sniffer/SniffAbstract.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Sniffer/SniffInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Sniffer/SniffInterface.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Tokenizer/DefaultTokenizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Tokenizer/DefaultTokenizer.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Util/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Util/Timer.php -------------------------------------------------------------------------------- /src/Bartlett/Reflect/Visitor/VisitorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/src/Bartlett/Reflect/Visitor/VisitorInterface.php -------------------------------------------------------------------------------- /tests/Analyser/AnalyserManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/Analyser/AnalyserManagerTest.php -------------------------------------------------------------------------------- /tests/Analyser/BarAnalyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/Analyser/BarAnalyser.php -------------------------------------------------------------------------------- /tests/Analyser/FooAnalyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/Analyser/FooAnalyser.php -------------------------------------------------------------------------------- /tests/Analyser/phpreflect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/Analyser/phpreflect.json -------------------------------------------------------------------------------- /tests/Environment/YourLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/Environment/YourLogger.php -------------------------------------------------------------------------------- /tests/Environment/dir1/phpreflect.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/Environment/dir1/phpreflect.json.dist -------------------------------------------------------------------------------- /tests/Environment/dir2/phpreflect.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/Environment/dir2/phpreflect.json.dist -------------------------------------------------------------------------------- /tests/Environment/phpreflect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/Environment/phpreflect.json -------------------------------------------------------------------------------- /tests/EnvironmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/EnvironmentTest.php -------------------------------------------------------------------------------- /tests/Model/ClassModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/Model/ClassModelTest.php -------------------------------------------------------------------------------- /tests/Model/ConstantModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/Model/ConstantModelTest.php -------------------------------------------------------------------------------- /tests/Model/FunctionModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/Model/FunctionModelTest.php -------------------------------------------------------------------------------- /tests/Model/GenericModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/Model/GenericModelTest.php -------------------------------------------------------------------------------- /tests/Model/IssueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/Model/IssueTest.php -------------------------------------------------------------------------------- /tests/Model/MethodModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/Model/MethodModelTest.php -------------------------------------------------------------------------------- /tests/Model/ParameterModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/Model/ParameterModelTest.php -------------------------------------------------------------------------------- /tests/Model/PropertyModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/Model/PropertyModelTest.php -------------------------------------------------------------------------------- /tests/MonologConsoleLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/MonologConsoleLogger.php -------------------------------------------------------------------------------- /tests/ResultPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/ResultPrinter.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/fixtures/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/fixtures/classes.php -------------------------------------------------------------------------------- /tests/fixtures/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/fixtures/constants.php -------------------------------------------------------------------------------- /tests/fixtures/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/fixtures/functions.php -------------------------------------------------------------------------------- /tests/fixtures/namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/fixtures/namespaces.php -------------------------------------------------------------------------------- /tests/fixtures/packages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/fixtures/packages.php -------------------------------------------------------------------------------- /tests/fixtures/properties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-reflect/HEAD/tests/fixtures/properties.php --------------------------------------------------------------------------------