Skip to content

Commit

Permalink
docs: add mention of proxy pattern usage
Browse files Browse the repository at this point in the history
  • Loading branch information
maximgrynykha committed May 6, 2024
1 parent 941c053 commit 2860ba0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ _The project utilizes `DRY` and `SOLID` principles. Used `Design Patterns` are l
| Creational | Structural | Behavioral | Others* |
|---------------------------------------------------------------------------------|:------------------------------------------------------------|:----------------------------------------------------------------|:------------------------------------------------------------------------|
| [`Abstract Factory`](https://refactoring.guru/design-patterns/abstract-factory) | [`Facade`](https://refactoring.guru/design-patterns/facade) | [`Strategy`](https://refactoring.guru/design-patterns/strategy) | [`Composition Root`](https://blog.ploeh.dk/2011/07/28/CompositionRoot/) |
| [`Factory Method`](https://refactoring.guru/design-patterns/factory-method) | | [`Command`](https://refactoring.guru/design-patterns/command) | |
| [`Factory Method`](https://refactoring.guru/design-patterns/factory-method) | [`Proxy`](https://refactoring.guru/design-patterns/proxy) | [`Command`](https://refactoring.guru/design-patterns/command) | |
| [`Builder`](https://refactoring.guru/design-patterns/builder) | | | |


Expand Down
5 changes: 5 additions & 0 deletions src/Winkill/Kernel/OS/Common/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
};
use Winkill\Kernel\Interface\Configuration as ConfigurationInterface;

/**
* Proxy pattern
*
* @see https://refactoring.guru/design-patterns/proxy
*/
class Configuration implements ConfigurationInterface
{
/**
Expand Down
4 changes: 2 additions & 2 deletions src/Winkill/Kernel/Processes.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
* Facade Pattern
* Builder Pattern
*
* @link https://refactoring.guru/design-patterns/facade
* @link https://refactoring.guru/design-patterns/builder
* @see https://refactoring.guru/design-patterns/facade
* @see https://refactoring.guru/design-patterns/builder
*/
final class Processes
{
Expand Down

0 comments on commit 2860ba0

Please sign in to comment.