├── src ├── Exception │ ├── Error.php │ ├── Throwable.php │ ├── Exception.php │ └── FileException.php ├── Eio │ ├── Internal │ │ └── EioPoll.php │ ├── EioDriver.php │ └── EioFile.php ├── File.php ├── Driver.php ├── Concurrent │ ├── Internal │ │ ├── File.php │ │ └── FileTask.php │ ├── ConcurrentDriver.php │ └── ConcurrentFile.php └── functions.php ├── phpdoc.dist.xml ├── LICENSE ├── composer.json └── README.md /src/Exception/Error.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Icicle 4 | 5 | build/docs 6 | utf8 7 | 8 | 9 | build/docs 10 | 11 | 12 | warn 13 | 14 | build/log/docs/{DATE}.log 15 | 16 | 17 | 18 |