From d586298e87c78412f5a838b1dfce09645625f5b1 Mon Sep 17 00:00:00 2001 From: webimpress Date: Wed, 16 Oct 2019 19:41:36 +0100 Subject: [PATCH] Use short array notation in docs --- docs/book/intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/book/intro.md b/docs/book/intro.md index 51e7314..2aaf5ac 100644 --- a/docs/book/intro.md +++ b/docs/book/intro.md @@ -46,7 +46,7 @@ Once you have a `MemoryManager` instance, you can start pushing values to it and pulling values from it. ```php -$loadedFiles = array(); +$loadedFiles = []; for ($count = 0; $count < 10000; $count++) { $f = fopen($fileNames[$count], 'rb');