Solid Php Example Save

Some examples about SOLID Design Principles in PHP

Project README

SOLID Principles Examples in PHP

Single Responsibility Principle (Example)

This principle is about actors and high level architecture.

A class should have one, and only one, reason to change.

Open Closed Principle (Example)

This principle is about class design and feature extensions.

A class should be open for extension, but closed for modification.

Liskov Substitution Principle (Example)

This principle is about subtyping and inheritance

Derived classes must be substitutable for their base classes.

Interface Segregation Principle (Example)

This principle is about business logic to clients communication.

Many client-specific interfaces are better than one general-purpose interface.

Dependency Inversion Principle (Example)

This principle wires up all other four principles in a single circle.

Depend upon abstractions. Do not depend upon concretions.

For more information about Object Oriented Design Principles, you can refer this slide

Open Source Agenda is not affiliated with "Solid Php Example" Project. README Source: wataridori/solid-php-example
Stars
455
Open Issues
1
Last Commit
1 year ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating