1
0
mirror of https://github.com/jupeter/clean-code-php.git synced 2025-10-03 17:31:52 +02:00

Made changes suggested in code review

This commit is contained in:
Mariano Custiel
2017-10-06 19:13:34 +02:00
committed by GitHub
parent 0d94f3315f
commit 42fcf8c7a9

View File

@@ -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;
}