From 39d511f84ad955f93efffc937f48a093aeeebe47 Mon Sep 17 00:00:00 2001 From: Peter Gribanov Date: Tue, 10 Apr 2018 12:59:09 +0300 Subject: [PATCH] rename classes to avoid confusion --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7ac3712..40dd4e7 100644 --- a/README.md +++ b/README.md @@ -1810,7 +1810,7 @@ interface Employee public function eat(): void; } -class Human implements Employee +class HumanEmployee implements Employee { public function work(): void { @@ -1823,7 +1823,7 @@ class Human implements Employee } } -class Robot implements Employee +class RobotEmployee implements Employee { public function work(): void { @@ -1856,7 +1856,7 @@ interface Employee extends Feedable, Workable { } -class Human implements Employee +class HumanEmployee implements Employee { public function work(): void { @@ -1870,7 +1870,7 @@ class Human implements Employee } // robot can only work -class Robot implements Workable +class RobotEmployee implements Workable { public function work(): void {