gitextract_gc4a4ste/ ├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin/ │ └── phpa ├── composer.json ├── phpunit.xml.dist ├── src/ │ └── PhpAssumptions/ │ ├── Analyser.php │ ├── Cli.php │ ├── Detector.php │ ├── Output/ │ │ ├── OutputInterface.php │ │ ├── PrettyOutput.php │ │ ├── Result.php │ │ └── XmlOutput.php │ └── Parser/ │ └── NodeVisitor.php └── tests/ ├── PhpAssumptions/ │ ├── AnalyserTest.php │ ├── CliTest.php │ ├── DetectorTest.php │ ├── ExampleTest.php │ ├── Output/ │ │ ├── PrettyOutputTest.php │ │ └── XmlOutputTest.php │ └── Parser/ │ └── NodeVisitorTest.php ├── bootstrap.php └── fixtures/ ├── Example.php ├── MyClass.php └── MyOtherClass.php