From 72c7ae3ddab95c51a81623ae0e25e6c4d72d7853 Mon Sep 17 00:00:00 2001 From: Kyle Thorpe Date: Fri, 21 Jan 2022 09:08:18 -0500 Subject: [PATCH] Description and resources for SOLID (#1021) Add a description and resources for the SOLID design principles --- .../103-solid.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/101-backend/content/114-design-and-development-principles/103-solid.md b/content/roadmaps/101-backend/content/114-design-and-development-principles/103-solid.md index 7d6790eb1..93341b0d8 100644 --- a/content/roadmaps/101-backend/content/114-design-and-development-principles/103-solid.md +++ b/content/roadmaps/101-backend/content/114-design-and-development-principles/103-solid.md @@ -1 +1,15 @@ -# Solid \ No newline at end of file +# SOLID + +SOLID is a set of principles applied to object-oriented design (OOD) to create maintainable, understandable, and flexible code, while avoiding code smells and defects. The principles are: + +- Single Responsibility +- Open/Closed +- Liskov Substitution +- Interface Segregation +- Dependency Inversion + +Free Content +Design Principles and +Design Patterns +SOLID Principles +SOLID: The First 5 Principles of Object Oriented Design