From 42fcf8c7a938c77f86b28f8e9262439bf70276a8 Mon Sep 17 00:00:00 2001 From: Mariano Custiel Date: Fri, 6 Oct 2017 19:13:34 +0200 Subject: [PATCH] Made changes suggested in code review --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 5eff6cb..bfd3b89 100644 --- a/README.md +++ b/README.md @@ -1226,7 +1226,6 @@ class Rectangle extends Shape public function __construct($width, $height) { - parent::__construct(); $this->width = $width; $this->height = $height; } @@ -1243,7 +1242,6 @@ class Square extends Shape public function __construct($length) { - parent::__construct(); $this->length = $length; }