Skip to content

Commit

Permalink
[phpstorm-stubs] use stable 8.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
isfedorov committed Nov 23, 2024
1 parent fda684a commit 2f83e80
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Reflection/ReflectionClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ public function newLazyProxy(callable $factory, int $options = 0): object {}
/**
* @since 8.4
*/
public function resetAsLazyGhost(object $object, callable $factory, int $options = 0): void {}
public function resetAsLazyGhost(object $object, callable $initializer, int $options = 0): void {}

/**
* @since 8.4
Expand Down
2 changes: 1 addition & 1 deletion dom/dom.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/
#[LanguageLevelTypeAware([
'8.0' => 'DOMElement',
'8.4' => 'DOMAttr|DOMElement'
'8.2' => 'DOMAttr|DOMElement'
], default: 'DOMElement|null')]
function dom_import_simplexml(object $node) {}

Expand Down
2 changes: 1 addition & 1 deletion standard/standard_10.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function request_parse_body(?array $options = null): array {}
/**
* @since 8.4
*/
function fpow(float $num1, float $num2): float {}
function fpow(float $num, float $exponent): float {}

/**
* @since 8.4
Expand Down
2 changes: 1 addition & 1 deletion tests/DockerImages/8.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.4.0RC4-alpine
FROM php:8.4.1-alpine

RUN set -eux; \
apk add --repository http://dl-cdn.alpinelinux.org/alpine/edge/community --no-cache --virtual .build-deps \
Expand Down
2 changes: 1 addition & 1 deletion tests/DockerImages/testRunner/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.4.0RC4-alpine
FROM php:8.4.1-alpine

RUN echo 'memory_limit = 2048M' >> /usr/local/etc/php/conf.d/docker-php-memlimit.ini
COPY --from=composer /usr/bin/composer /usr/bin/composer
Expand Down

0 comments on commit 2f83e80

Please sign in to comment.