https://github.com/bberkay/solid-with-php
SOLID Principles with Clean Code
https://github.com/bberkay/solid-with-php
clean-code computer-science dependency-injection interface-segregation-principle liskov-substitution-principle open-closed-principle php single-responsibility-principle solid
Last synced: about 1 month ago
JSON representation
SOLID Principles with Clean Code
- Host: GitHub
- URL: https://github.com/bberkay/solid-with-php
- Owner: bberkay
- Created: 2023-07-08T13:22:19.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-08T18:55:08.000Z (almost 3 years ago)
- Last Synced: 2025-07-14T21:38:08.641Z (11 months ago)
- Topics: clean-code, computer-science, dependency-injection, interface-segregation-principle, liskov-substitution-principle, open-closed-principle, php, single-responsibility-principle, solid
- Language: PHP
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Solid Principle Studies with PHP
The main purpose is to practice.
1. [Single Responsibility Principle](https://github.com/bberkay/solid-with-php/blob/main/single_responsibility_principle.php)
2. [Open-Closed Principle](https://github.com/bberkay/solid-with-php/blob/main/open_closed_principle.php)
3. [Liskov Substitution Principle](https://github.com/bberkay/solid-with-php/blob/main/liskov_substitution_principle.php)
4. [Interface Segregation Principle](https://github.com/bberkay/solid-with-php/blob/main/interface_segregation_principle.php)
5. [Dependency Inversion Principle](https://github.com/bberkay/solid-with-php/blob/main/dependency_inversion_principle.php)