├── .gitignore ├── .php_cs ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── lib └── PHPTypes │ ├── InternalArgInfo.php │ ├── State.php │ ├── Type.php │ ├── TypeInferer.php │ ├── TypeReconstructor.php │ └── TypeResolver.php ├── phpunit.xml.dist └── test ├── PHPTypes ├── ReconstructorTest.php └── TypeTest.php └── code ├── basic.test ├── bitwiseNot.test └── class.test /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/.php_cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/composer.lock -------------------------------------------------------------------------------- /lib/PHPTypes/InternalArgInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/lib/PHPTypes/InternalArgInfo.php -------------------------------------------------------------------------------- /lib/PHPTypes/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/lib/PHPTypes/State.php -------------------------------------------------------------------------------- /lib/PHPTypes/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/lib/PHPTypes/Type.php -------------------------------------------------------------------------------- /lib/PHPTypes/TypeInferer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/lib/PHPTypes/TypeInferer.php -------------------------------------------------------------------------------- /lib/PHPTypes/TypeReconstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/lib/PHPTypes/TypeReconstructor.php -------------------------------------------------------------------------------- /lib/PHPTypes/TypeResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/lib/PHPTypes/TypeResolver.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /test/PHPTypes/ReconstructorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/test/PHPTypes/ReconstructorTest.php -------------------------------------------------------------------------------- /test/PHPTypes/TypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/test/PHPTypes/TypeTest.php -------------------------------------------------------------------------------- /test/code/basic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/test/code/basic.test -------------------------------------------------------------------------------- /test/code/bitwiseNot.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/test/code/bitwiseNot.test -------------------------------------------------------------------------------- /test/code/class.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-types/HEAD/test/code/class.test --------------------------------------------------------------------------------