https://github.com/kb-web-development/solid-principles
My own implemented examples of the 5 SOLID design principles
https://github.com/kb-web-development/solid-principles
Last synced: 3 months ago
JSON representation
My own implemented examples of the 5 SOLID design principles
- Host: GitHub
- URL: https://github.com/kb-web-development/solid-principles
- Owner: KB-WEB-DEVELOPMENT
- License: mit
- Created: 2024-02-18T18:35:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-13T11:45:35.000Z (11 months ago)
- Last Synced: 2025-01-21T04:08:05.480Z (5 months ago)
- Language: PHP
- Size: 73.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This repository shows my own implemented examples of the 5 SOLID design principles used in software engineering.
These 5 design principles are intended to make object-oriented designs more understandable, flexible and maintainable.
The 5 SOLID design principles are the:
1. (S) Single-responsibility principle
2. (O) Open–closed principle
3. (L) Liskov substitution principle
4. (I) Interface segregation principle
5. (D) Dependency inversion principle
For an overview of the 5 SOLID design principles:
https://en.wikipedia.org/wiki/SOLID
I included basic php unit testing.