implements ArrayAccess, Countable, Iterator, Traversable
Source on GitHub
A registry is a container for storing objects and values in the application space. By storing the value in a registry, the same object is always available throughout your application.
$registry = new \Phalcon\Registry();
// Set value
$registry->something = 'something';
// or
$registry['something'] = 'something';
// Get value
$value = $registry->something;
// or
$valu