Exemplo n.º 1
0
 /**
  * Get instance of multiton tasks' list controller
  */
 public static function getInstance()
 {
     if (self::$instanceOfSelf === null) {
         self::$instanceOfSelf = new self();
     }
     return self::$instanceOfSelf;
 }