Browse Source

Fixing deprecation message in php 8.2

pull/121/head
Sanic 3 years ago
parent
commit
62c0ed7a54
  1. 4
      bibtexbrowser.php

4
bibtexbrowser.php

@ -777,6 +777,10 @@ class XMLPrettyPrinter extends ParserDelegate {
/** represents @string{k=v} */
class StringEntry {
private string $name;
private string $value;
private string $filename;
function __construct($k, $v, $filename) {
$this->name=$k;
$this->value=$v;

Loading…
Cancel
Save