From 9e3d3fd7efab6a0fcff041c4b0e17089379031a2 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 18 Mar 2020 19:32:25 +0000 Subject: [PATCH] 4g: Make it easier to see where the lines go Fixes #4 --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 7411a4a..33d0a9b 100644 --- a/README.md +++ b/README.md @@ -694,6 +694,9 @@ As we need 3 articles, let’s create them. + $this->createNode(['type' => 'article'])->save(); + $this->createNode(['type' => 'article'])->save(); + $this->createNode(['type' => 'article'])->save(); + + $repository = $this->container->get(ArticleRepository::class); + $articles = $repository->getAll(); ``` The next error is a little cryptic: