Exemplo n.º 1
0
 public static function getInstance() : Log
 {
     if (empty(self::$instance)) {
         self::$instance = new Log();
     }
     return self::$instance;
 }
Exemplo n.º 2
0
 public static function getInstance() : Log
 {
     if (null === self::$instance) {
         self::$instance = new static();
     }
     return self::$instance;
 }