1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-08-22 04:43:32 +02:00

PSR - fix

This commit is contained in:
Awilum
2013-01-17 22:39:21 +02:00
parent fa5824e03c
commit 58c0e1207d
4 changed files with 15 additions and 15 deletions

View File

@@ -27,7 +27,7 @@ class Registry
/**
* Checks if an object with this name is in the registry.
*
*
* <code>
* if (Registry::exists('var')) {
* // Do something...
@@ -44,7 +44,7 @@ class Registry
/**
* Registers a given value under a given name.
*
*
* <code>
* Registry::set('var', 'value');
* </code>
@@ -69,7 +69,7 @@ class Registry
/**
* Fetch an item from the registry.
*
*
* <code>
* $var = Registry::get('var', 'value');
* </code>