Skip to content

Commit f87b025

Browse files
committed
chore: add constants to lz4.stub.php
1 parent fb8ff27 commit f87b025

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

lz4.stub.php

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@
22

33
namespace {
44

5+
/**
6+
* @var int
7+
* @cvalue LZ4_CLEVEL_MIN
8+
*/
9+
const LZ4_CLEVEL_MIN = UNKNOWN;
10+
11+
/**
12+
* @var int
13+
* @cvalue LZ4_CLEVEL_MAX
14+
*/
15+
const LZ4_CLEVEL_MAX = UNKNOWN;
16+
17+
/**
18+
* @var string
19+
* @cvalue LZ4_VERSION_TEXT
20+
*/
21+
const LZ4_VERSION_TEXT = UNKNOWN;
22+
23+
/**
24+
* @var int
25+
* @cvalue LZ4_VERSION_NUMBER
26+
*/
27+
const LZ4_VERSION_NUMBER = UNKNOWN;
28+
29+
530
function lz4_compress(string $data, int $level = 0, string $extra = NULL): string|false {}
631

732

0 commit comments

Comments
 (0)