diff options
Diffstat (limited to 'core/classes/Registry.php')
| -rw-r--r-- | core/classes/Registry.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/classes/Registry.php b/core/classes/Registry.php index df012e9..047fd54 100644 --- a/core/classes/Registry.php +++ b/core/classes/Registry.php @@ -2,6 +2,7 @@ /** Registry * --- + * * Regisrty is a global repository of {key: value} pairs, * where key is a friendly label, and... * value can be anything (numbet|string|array|object etc) @@ -9,6 +10,11 @@ * It has a central role in the framework. * By default it holds the Request instance and several * othe core instanses like database connections etc. + * + * It implements the Facade design pattern; + * it defines a new interface for existing objects. + * + * --- */ class Registry { |
