From f6d79f264a21c0e0db70197a36f7d5c0de8580f3 Mon Sep 17 00:00:00 2001 From: adlawson Date: Wed, 22 Jul 2015 16:10:55 +0100 Subject: [PATCH] Add mount to README example --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2968e71..7799def 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ use Vfs\Node\File; // Create and mount the file system $fs = FileSystem::factory('vfs://'); +$fs->mount(); // Add `/foo` and `/foo/bar.txt` $foo = new Directory(['bar.txt' => new File('Hello, World!')]);