Exemplo n.º 1
0
 /**
  * Note: do not call manually!
  * @internal
  * @static
  * @return void
  */
 public static function release_test_lock()
 {
     if (self::$lockhandle) {
         flock(self::$lockhandle, LOCK_UN);
         fclose(self::$lockhandle);
         self::$lockhandle = null;
     }
 }