mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-27 14:59:11 +02:00
11 lines
429 B
Markdown
11 lines
429 B
Markdown
# Adapter / Wrapper
|
|
|
|
## Purpose
|
|
|
|
To translate one interface for a class into a compatible interface. An adapter allows classes to work together that normally could not because of incompatible interfaces by providing it's interface to clients while using the original interface.
|
|
|
|
## Examples
|
|
|
|
* DB Client libraries adapter
|
|
* using multiple different webservices and adapters normalize data so that the outcome is the same for all
|