Skip to content
This repository was archived by the owner on Jan 14, 2022. It is now read-only.

Commit 3310a71

Browse files
authored
PHP 8.0 support (#10)
1 parent 9760455 commit 3310a71

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
php: ['7.0', '7.1', '7.2', '7.3', '7.4']
15+
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
1616

1717
steps:
1818
- uses: actions/checkout@v2

pocketmine_chunkutils.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ PHP_METHOD(ChunkUtils, reorderByteArray) {
8080
}
8181
}
8282

83-
RETURN_STRINGL(result, 4096)
83+
RETURN_STRINGL(result, 4096);
8484
} /* }}} */
8585

8686

@@ -119,7 +119,7 @@ PHP_METHOD(ChunkUtils, reorderNibbleArray) {
119119
i += 128;
120120
}
121121

122-
RETURN_STRINGL(result, 2048)
122+
RETURN_STRINGL(result, 2048);
123123
} /* }}} */
124124

125125

0 commit comments

Comments
 (0)