├── .gitignore ├── .travis.yml ├── LICENSE ├── META.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Promise.php └── Promise │ └── ErrorHandler.php └── test ├── ErrorHandlerTest.php └── phpt ├── error_handler_001.phpt ├── error_handler_002.phpt ├── error_handler_003.phpt ├── error_handler_004.phpt ├── error_handler_005.phpt └── error_handler_006.phpt /.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /vendor/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/promise/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/promise/HEAD/LICENSE -------------------------------------------------------------------------------- /META.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/promise/HEAD/META.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/promise/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/promise/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/promise/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Promise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/promise/HEAD/src/Promise.php -------------------------------------------------------------------------------- /src/Promise/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/promise/HEAD/src/Promise/ErrorHandler.php -------------------------------------------------------------------------------- /test/ErrorHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/promise/HEAD/test/ErrorHandlerTest.php -------------------------------------------------------------------------------- /test/phpt/error_handler_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/promise/HEAD/test/phpt/error_handler_001.phpt -------------------------------------------------------------------------------- /test/phpt/error_handler_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/promise/HEAD/test/phpt/error_handler_002.phpt -------------------------------------------------------------------------------- /test/phpt/error_handler_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/promise/HEAD/test/phpt/error_handler_003.phpt -------------------------------------------------------------------------------- /test/phpt/error_handler_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/promise/HEAD/test/phpt/error_handler_004.phpt -------------------------------------------------------------------------------- /test/phpt/error_handler_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/promise/HEAD/test/phpt/error_handler_005.phpt -------------------------------------------------------------------------------- /test/phpt/error_handler_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/promise/HEAD/test/phpt/error_handler_006.phpt --------------------------------------------------------------------------------