Skip to content

Commit 1005bc7

Browse files
committed
[2.x] Ensure void return type translates to null
1 parent ea9df9c commit 1005bc7

File tree

7 files changed

+192
-83
lines changed

7 files changed

+192
-83
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ else
2222
-v "`pwd`:`pwd`" \
2323
-v "${COMPOSER_CACHE_DIR}:${COMPOSER_CONTAINER_CACHE_DIR}" \
2424
-w "`pwd`" \
25-
"ghcr.io/wyrihaximusnet/php:${PHP_VERSION}-nts-alpine${SLIM_DOCKER_IMAGE}-dev"
25+
"ghcr.io/wyrihaximusnet/php:${PHP_VERSION}-zts-alpine${SLIM_DOCKER_IMAGE}-dev"
2626
endif
2727

2828
ifneq (,$(findstring icrosoft,$(shell cat /proc/version)))

composer.json

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-parallel/contracts",
3-
"description": "Interfaces for ReactPHP ext-parallel related packages",
3+
"description": "\ud83d\udcdc Interfaces for ReactPHP ext-parallel related packages",
44
"license": "MIT",
55
"authors": [
66
{
@@ -14,6 +14,8 @@
1414
"wyrihaximus/pool-info": "^2.0.0"
1515
},
1616
"require-dev": {
17+
"ext-parallel": "*",
18+
"react-parallel/stubs": "^1.2",
1719
"wyrihaximus/async-test-utilities": "^8.0.5"
1820
},
1921
"autoload": {
@@ -27,15 +29,23 @@
2729
}
2830
},
2931
"config": {
30-
"platform": {
31-
"php": "8.2.13"
32-
},
33-
"sort-packages": true,
3432
"allow-plugins": {
35-
"infection/extension-installer": true,
3633
"dealerdirect/phpcodesniffer-composer-installer": true,
34+
"ergebnis/composer-normalize": true,
3735
"icanhazstring/composer-unused": true,
38-
"ergebnis/composer-normalize": true
39-
}
36+
"infection/extension-installer": true
37+
},
38+
"platform": {
39+
"php": "8.2.13"
40+
},
41+
"sort-packages": true
42+
},
43+
"scripts": {
44+
"post-install-cmd": [
45+
"composer normalize"
46+
],
47+
"post-update-cmd": [
48+
"composer normalize"
49+
]
4050
}
4151
}

0 commit comments

Comments
 (0)