An open API service indexing awesome lists of open source software.

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

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)