Skip to content
Snippets Groups Projects
Commit 35580107 authored by Demian Katz's avatar Demian Katz
Browse files

Enforce singleton pattern.

parent 8bfd5b64
Branches
Tags
No related merge requests found
......@@ -47,9 +47,9 @@ class Manager
protected $caches = array();
/**
* Constructor
* Constructor (protected to enforce use of getInstance).
*/
public function __construct()
protected function __construct()
{
// If we have a parent constructor, call it (none exists at the time of
// this writing, but this is just in case Zend Framework changes later).
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment