From 5e2d51e1eca3d9476a88ac22ac048c6817d5ea48 Mon Sep 17 00:00:00 2001 From: Artemiy Pulyavin Date: Tue, 25 Jul 2017 12:47:19 +0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 676f5d2..888bd2b 100644 --- a/README.md +++ b/README.md @@ -1153,7 +1153,7 @@ The following example can be used to pipe the contents of a source file into a destination file without having to ever read the whole file into memory: ```php -$loop = new React\EventLoop\StreamSelectLoop::create(); +$loop = new React\EventLoop\StreamSelectLoop; $source = new React\Stream\ReadableResourceStream(fopen('source.txt', 'r'), $loop); $dest = new React\Stream\WritableResourceStream(fopen('destination.txt', 'w'), $loop);