1
0
mirror of https://github.com/jupeter/clean-code-php.git synced 2025-09-25 21:49:04 +02:00

Merge pull request #56 from Zayon/patch-1

LSP good example correction
This commit is contained in:
Tomáš Votruba
2017-09-04 11:00:39 +02:00
committed by GitHub

View File

@@ -1201,7 +1201,7 @@ renderLargeRectangles($rectangles);
**Good:**
```php
abstract class Shape {
private $width, $height;
protected $width, $height;
abstract public function getArea();