From 77076db6ceafa11984c54768a032308016def7bf Mon Sep 17 00:00:00 2001 From: Amir Zpr <45946337+amirzpr@users.noreply.github.com> Date: Sat, 27 Aug 2022 14:50:27 +0430 Subject: [PATCH] Proxy class has not implemented interface (#134) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1ccdc835..a724328d 100644 --- a/README.md +++ b/README.md @@ -1226,7 +1226,7 @@ class LabDoor implements Door ``` Then we have a proxy to secure any doors that we want ```php -class SecuredDoor +class SecuredDoor implements Door { protected $door;