jeremykendall / ultra-facade
Implements the Facade pattern to build SplIterators.
Requires
- php: >=5.4
Requires (Dev)
- phpunit/phpunit: 3.7.*
This package is auto-updated.
Last update: 2024-10-25 06:28:36 UTC
README
In the context of UltraFacade, a Facade is an object-oriented creational design pattern to implement the concept of facades and deals with the problem of creating objects without specifying the exact class of object that will be created.
A Concrete Implementation
The concrete implentation in this library,
JeremyKendall\UltraFacade\SplIteratorFacade
, is an example of how to properly
use a Facade. It creates SPL Iterators based on a type string passed in at
runtime. The type string is the name of the SPL Iterator with 'Iterator'
removed (less typing FTW). The second optional argument is used to pass
required params the the iterator's constructor.
$iterator = new SplIteratorFacade::facade('RecursiveDirectory', array(__DIR__));
While this specific facade implementation is production ready and should be used if you have a use case for it, the intent is simply to demonstrate how the Facade should be used.
Installation
Installation is handled via Composer.
{ "require": { "jeremykendall/ultra-facade": "1.*" } }
Please check the UltraFacade page at Packagist for the latest version.