Coder on Code: Design Patterns in PHP: Adapters
The Coder on Code site has posted a new tutorial covering the Adapter design pattern in detail. They talk about what the pattern is, what it can be useful for and include some code to illustrate. The...
View ArticleNetTuts.com: Design Patterns: The Simple Factory Pattern
NetTuts.com has posted the next part of their series focusing on design patterns (and more specifically implementing them in PHP). In this latest post they look at a simple version of the Factory...
View ArticleBosnadev.com: Using Repository Pattern in Laravel 5
Mirza Pasic has posted a tutorial to the Bosnadev.com site introducing you to the repository design pattern and how to use it in a Laravel 5-based application. These days there is a lot of buzz about...
View ArticleNetTuts.com: Design Patterns: The Command Pattern
NetTuts.com continues their series covering the basics of design patterns (in PHP) with a new article about the Command design pattern. This pattern is particularly useful for executing self-contained...
View ArticleNetTuts.com: Design Patterns: The Singleton Pattern
On the NetTuts.com site today they've posted another in their series introducing the various design patterns that have been established in software development. In this new post they talk about the...
View ArticleDavid Lundgren: When does Dependency Injection become an anti-pattern?
In a new post to his site David Lundgren wonders when dependency injection becomes an anti-pattern when used in PHP applications. The idea of dependency injection is to provide objects with instances...
View ArticleReddit.com: I feel like events are an anti-pattern
On the /r/php subreddit frm Reddit.com, phpdevster proposes an interesting opinion - that an event system, set up with a listener and defined events, has become more of an anti-pattern in its most...
View ArticleMarc Aube: Design Pattern: Specification
Marc Aube has a new post to his site that introduces you to the specification design pattern, a technique that's useful for ensuing the current state of an object is valid. The specification pattern...
View ArticleEd Zynda: Aspect Oriented PHP And The Interceptor Pattern
Ed Zynda has a recent post to his site looking at the use of the Interceptor design pattern with the aspect oriented methodology in PHP. He doesn't get into the basic concepts of AOP, so you might...
View ArticleSitePoint PHP Blog: Introduction to Chain of Responsibility
The SitePoint PHP blog has a recent post where they dig into the details of the Chain of Responsibility design pattern, a commonly used structure that makes for easier workflow handling and...
View Article