Use @var instead of obsolete @static tag

This commit is contained in:
Bocharsky Victor
2014-12-19 11:36:14 +02:00
parent 0f6709c751
commit 17432d88cb

View File

@@ -73,7 +73,7 @@ one instance of a particular class. The singleton pattern enables us to do this.
class Singleton
{
/**
* @static Singleton The reference to *Singleton* instance of this class
* @var Singleton The reference to *Singleton* instance of this class
*/
private static $instance;