clean / registry
Simple registry pattern implementation
1.0.1
2015-11-09 10:59 UTC
Requires
None
Requires (Dev)
- phpunit/phpunit: 4.*
- scrutinizer/ocular: dev-master
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is auto-updated.
Last update: 2026-09-06 13:25:42 UTC
README
Basic implementation of registry pattern that implement a central storage for objects often used throughout the application.
Installation
via Composer:
"require": { "clean/registry": "*" }
Example of Usage
$registry = new Registry() $registry->set('var1', 1); $var1 = $registry->get('var1'); if ($registry->has('var1')) { ... }
or you can extend any class with ReigistryTrait to add registry methods to it
class MyClass { use \Clean\Registry\RegistryTrait; }