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

Commit

Permalink
PHP 8.0 support (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
dktapps committed Dec 11, 2020
1 parent 9760455 commit 3310a71
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
php: ['7.0', '7.1', '7.2', '7.3', '7.4']
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0']

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions pocketmine_chunkutils.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ PHP_METHOD(ChunkUtils, reorderByteArray) {
}
}

RETURN_STRINGL(result, 4096)
RETURN_STRINGL(result, 4096);
} /* }}} */


Expand Down Expand Up @@ -119,7 +119,7 @@ PHP_METHOD(ChunkUtils, reorderNibbleArray) {
i += 128;
}

RETURN_STRINGL(result, 2048)
RETURN_STRINGL(result, 2048);
} /* }}} */


Expand Down

0 comments on commit 3310a71

Please sign in to comment.