1
0
mirror of https://github.com/danog/byte-stream.git synced 2024-11-26 20:04:51 +01:00

Fix code style

This commit is contained in:
Niklas Keller 2017-05-14 14:41:04 +02:00
parent c397a22ac9
commit 4f4c9f171c

View File

@ -29,11 +29,11 @@ Loop::run(function () {
$parser->write("an\nexample\nof\n");
});
Loop::delay(2000, function () use ($parser) {
Loop::delay(2000, function () use ($parser) {
$parser->write("a\nsimple\n");
});
Loop::delay(3000, function () use ($parser) {
Loop::delay(3000, function () use ($parser) {
$parser->write("incremental\nstream\nparser");
});