From dd3a383e599f49777d8b628dadbb90cae435b87e Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Sat, 25 Feb 2023 19:38:58 +0000 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e00d74..4b4936a 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ $entity = $repo->findSomeEntity(...)->getOrCall(function() { ```php // Before -$entity = $this->findSomeEntity() +$entity = $this->findSomeEntity(); if (null === $entity) { throw new NotFoundException(); }