Clean Code
SOLID Principles - with …
SOLID is a set of five simple rules for designing object-oriented code that’s easier to change and test.
- S: Single Responsibility Principle (SRP) : one responsibility per class.
- O: Open/Closed Principle (OCP) : add new behavior by extending, avoid changing tested code.
- L: Liskov Substitution …