├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── lib └── Notoj │ ├── Annotation │ ├── Annotation.php │ ├── Annotations.php │ └── Common.php │ ├── Cacheable.php │ ├── ClassReference.php │ ├── Dir.php │ ├── File.php │ ├── Filesystem.php │ ├── FunctionCall.php │ ├── Notoj.php │ ├── Parser.php │ ├── Parser.y │ ├── ReflectionClass.php │ ├── ReflectionFunction.php │ ├── ReflectionMethod.php │ ├── ReflectionObject.php │ ├── ReflectionProperty.php │ ├── TObject │ ├── Base.php │ ├── zCallable.php │ ├── zClass.php │ ├── zClassMember.php │ ├── zFunction.php │ ├── zMethod.php │ └── zProperty.php │ ├── Tokenizer.php │ └── tProperty.php ├── phpunit.xml └── tests ├── ArgumentsTest.php ├── SimpleTest.php ├── bootstrap.php ├── fixtures ├── extended.php ├── foo │ └── namespace.php ├── interface.php └── namespace.php └── phpunit-compat.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/composer.json -------------------------------------------------------------------------------- /lib/Notoj/Annotation/Annotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/Annotation/Annotation.php -------------------------------------------------------------------------------- /lib/Notoj/Annotation/Annotations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/Annotation/Annotations.php -------------------------------------------------------------------------------- /lib/Notoj/Annotation/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/Annotation/Common.php -------------------------------------------------------------------------------- /lib/Notoj/Cacheable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/Cacheable.php -------------------------------------------------------------------------------- /lib/Notoj/ClassReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/ClassReference.php -------------------------------------------------------------------------------- /lib/Notoj/Dir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/Dir.php -------------------------------------------------------------------------------- /lib/Notoj/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/File.php -------------------------------------------------------------------------------- /lib/Notoj/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/Filesystem.php -------------------------------------------------------------------------------- /lib/Notoj/FunctionCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/FunctionCall.php -------------------------------------------------------------------------------- /lib/Notoj/Notoj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/Notoj.php -------------------------------------------------------------------------------- /lib/Notoj/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/Parser.php -------------------------------------------------------------------------------- /lib/Notoj/Parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/Parser.y -------------------------------------------------------------------------------- /lib/Notoj/ReflectionClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/ReflectionClass.php -------------------------------------------------------------------------------- /lib/Notoj/ReflectionFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/ReflectionFunction.php -------------------------------------------------------------------------------- /lib/Notoj/ReflectionMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/ReflectionMethod.php -------------------------------------------------------------------------------- /lib/Notoj/ReflectionObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/ReflectionObject.php -------------------------------------------------------------------------------- /lib/Notoj/ReflectionProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/ReflectionProperty.php -------------------------------------------------------------------------------- /lib/Notoj/TObject/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/TObject/Base.php -------------------------------------------------------------------------------- /lib/Notoj/TObject/zCallable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/TObject/zCallable.php -------------------------------------------------------------------------------- /lib/Notoj/TObject/zClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/TObject/zClass.php -------------------------------------------------------------------------------- /lib/Notoj/TObject/zClassMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/TObject/zClassMember.php -------------------------------------------------------------------------------- /lib/Notoj/TObject/zFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/TObject/zFunction.php -------------------------------------------------------------------------------- /lib/Notoj/TObject/zMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/TObject/zMethod.php -------------------------------------------------------------------------------- /lib/Notoj/TObject/zProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/TObject/zProperty.php -------------------------------------------------------------------------------- /lib/Notoj/Tokenizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/Tokenizer.php -------------------------------------------------------------------------------- /lib/Notoj/tProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/lib/Notoj/tProperty.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/phpunit.xml -------------------------------------------------------------------------------- /tests/ArgumentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/tests/ArgumentsTest.php -------------------------------------------------------------------------------- /tests/SimpleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/tests/SimpleTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/fixtures/extended.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/tests/fixtures/extended.php -------------------------------------------------------------------------------- /tests/fixtures/foo/namespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/tests/fixtures/foo/namespace.php -------------------------------------------------------------------------------- /tests/fixtures/interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/tests/fixtures/interface.php -------------------------------------------------------------------------------- /tests/fixtures/namespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/tests/fixtures/namespace.php -------------------------------------------------------------------------------- /tests/phpunit-compat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crodas/Notoj/HEAD/tests/phpunit-compat.php --------------------------------------------------------------------------------